mvc3视图调用js的问题 路过的大侠看看吧

 @if(viewbag.ShowMsg=="True") {
showalert();
}

<script type="text/javascript" >
function showalert()
{
alrer('我是弹出框');
}
</script >
接着就是在Controller中根据需要定义viewbag.ShowMsg的值了。

 

视图不就会提示上下文不存在showalert 请问这个要怎么改 大侠?

慕娘9325324
浏览 388回答 1
1回答

倚天杖

<script type="text/javascript">  function showalert() {          alert("1111");      }  $(document).ready(function () {  if ("@ViewData["ShowMsg"]" =="true") {              showalert();          } }); </script
打开App,查看更多内容
随时随地看视频慕课网APP