在 .Net MVC 3 中,我尝试运行脚本。脚本处于局部视图中。如果我用 Html.RenderAction 调用部分它可以工作,但如果我通过 jquery ajax 在页面中调用部分视图它不起作用。
局部视图
<script type="text/javascript">
document.write("<script src='http://ad.reklamport.com/rpgetad.ashx?tt=t_iddaa_habersayfalari_mac_detay_300x250&ciid=&rnd=" + Math.random() % 99999999 + "'></" + "script>");
</script>
看法
有用..
<html>
<head>
</head>
<body>
@{Html.RenderAction("Partial");}
</body>
</html>
它不起作用...
<body>
@{Html.RenderAction("Partial");}
<script type="text/javascript">
$.ajax({
type: "post",
url: "/Home/Partial",
dataType: "html",
success: function (result) {
$("#content").html(result);
},
error: function (result) {
}
});
</script>
<div id="content">
</div>
</body>
我需要使用第二种方式..有什么问题?