在我的Global.asax訪問頁面時,我有URL路由設置如下圖所示:jQuery對象預期的錯誤通過URL路由
routes.MapPageRoute("User Logon", "{Vendor}/Logon", "~/Logon.aspx");
在logon.aspx頁,我有一個腳本,「風格化」登錄按鈕:
<link href="jquery/css/flick/jquery-ui-1.8.1.custom.css" rel="stylesheet" type="text/css" />
<link href="images/style.css" rel="stylesheet" type="text/css" />
<script src="jquery/js/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="jquery/js/jquery-ui-1.8.1.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#<%= ButtonLogon.ClientID %>').button();
});
</script>
當我訪問該頁面我們的網址(在調試模式)http://localhost/logon.aspx?v=1頁面加載正確,正確jQuery的按鈕命令加載。但是,然後我使用新的URL路由訪問該頁面,我得到這個錯誤。
微軟JScript運行時錯誤:預期的對象
任何人有一個想法,爲什麼出現這種情況?
謝謝。
明白了。就是這樣。謝謝! – 2010-05-29 16:50:21
如果我的回答對你有幫助,請你考慮接受它嗎? (只需點擊左側的空白複選標記) – 2010-05-29 16:59:05
我有一個愚蠢的問題。哪一個是後者的選擇? – 2011-05-26 16:54:43