.Net MVC個人筆記
阿新 • • 發佈:2018-03-05
log 方法 兩個 on() res 比較 fun 代碼 color
關於轉向的問題,目前知道的是Response.Redirect 和 location.href
我現在有兩個controller,Home和Test
<h2>this is Home</h2> <p id="test">大家好,我是Vae</p> <button type="button" onclick="on()">點我</button> <script> function on() { alert("我轉向了啊"); @{ Response.Redirect("/Test/Index"); } } </script>
Response.Redirect 這種方法呢,會直接的就轉向了,那個alert沒什麽反應,而且貌似只能重定向到那個頁面,不能返回HomeController?
這裏我不明白的是沒有經過我的button點擊事件就執行了JavaScript代碼
第二種方式比較好
<h2>this is Home</h2> <p id="test">大家好,我是Vae</p> <button type="button" onclick="on()">點我</button> <script> function on() { alert("我轉向了啊"); location.href="/Test/Index"; } </script>
這個還是很不錯的,暫且寫到這裏
.Net MVC個人筆記