我有點擊它具有以下被稱爲按鈕js函數aspx頁面使用渲染的.ascx頁面到.aspx頁面中的javascript,jquery的
<input type="button" onclick="calltemp1()" value="Temp1"/>
<script type="text/javascript">
function calltemp1() {
$("#Renderthisdiv").load("/Views/Templates/_Temp1.ascx");
}
</script>
我_Temp1.ascx頁面呈現另一個頁面Temp1.ascx my _Temp1.ascx包含
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl" %>
<div>
<%Html.RenderPartial("/Views/Templates/Temp1.ascx"); %>
</div>
當我運行程序我得到的JavaScript運行錯誤說「預期目標」 請幫我解決這個問題