@if(viewbag.ShowMsg=="True") { showalert(); } <script type="text/javascript" > function showalert() { alrer('我是弹出框'); } </script >
接着就是在Controller中根据需要定义viewbag.ShowMsg的值了。
视图不就会提示上下文不存在showalert 请问这个要怎么改 大侠?
<script type="text/javascript">
function showalert() { alert("1111"); }
$(document).ready(function () {
if ("@ViewData["ShowMsg"]" =="true") { showalert(); }
});
</script
ViewData["ShowMsg"] = "true";
@@索卡: 明白了 朋友谢谢