我有 aspx 页面,它具有以下 js 函数,在按钮单击时调用
<input type="button" onclick="calltemp1()" value="Temp1"/>
<script type="text/javascript">
function calltemp1() {
$("#Renderthisdiv").load("/Views/Templates/_Temp1.ascx");
}
</script>
我的 _Temp1.ascx 页面呈现另一个页面 Temp1.ascx 我的 _Temp1.ascx 包含
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<div>
<%Html.RenderPartial("/Views/Templates/Temp1.ascx"); %>
</div>
当我运行程序时,我收到 JavaScript 运行时错误,提示“预期对象” ,请帮我解决这个问题