使用jQuery了在ASP中創建確認框,如果我去的方法來顯示確認框,我只是用這個在MVC與鑑於
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "confirm('Record Inserted Successfully')", true);
但在端MVC,如果我去了做同樣的我也不會找任何方式做到這一點
使用jQuery了在ASP中創建確認框,如果我去的方法來顯示確認框,我只是用這個在MVC與鑑於
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "confirm('Record Inserted Successfully')", true);
但在端MVC,如果我去了做同樣的我也不會找任何方式做到這一點
如果你需要簡單的確認你總是可以使用簡單的js confirm
方法。
例如,如果你想確認form
submit
- 你的SAN做這樣的:
<form onsubmit="return confirm('Will we post?');">
如果你有HREF鏈接,你可以做這樣的剃刀語法:
@Html.ActionLink("YourAction", "YourController",
null, //here you can pass additional parameters to href
new { onclick = "return confirm('Are you sure you want this?');" })
你有沒有嘗試過自己? –
是的我會嘗試使用我們可以在asp中使用的scriptmanager.load,但我會在mvc @teovankot – Jay
中做同樣的事情,我們可以爲自定義確認框設計一個簡單的局部視圖。然後返回該部分視圖結果。使用CSS你可以顯示它的位置。 –