我有控制器动作,它填满了视图包。
ViewBag.IsDownloadPDF = "true";
我有函数,我在$(document).ready(function())函数中调用。
function checkdata()
{
alert('Hi');
}
我想调用checkdata函数,直到找不到viewbag数据。
如果我能得到正确答案,我将不胜感激。
答案 0 :(得分:0)
我知道这个美丽的代码,但你不能这样做吗?
@if (ViewBag.IsDownloadPDF == "true")
{
<script>
//Either this
function checkdata()
{
alert('Hi');
}
checkdata();
//Or this
checkdata();
</script>
}