2011-08-10 57 views
0

這裏面工作過,現在變成了一個jQuery錯誤的HTML頁面。自從最後一次工作以來,我創建了一個新的用戶帳戶,並嘗試將PC設置爲pc ad hoc無線網絡。奇怪的是,這些會產生影響。jQuery的在Windows 7未定義的錯誤IIS 7的PC

標籤圖書館。

<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"> 
<script src="http://jqueryui.com/jquery-1.5.1.js"></script> 
<script src="http://jqueryui.com/ui/jquery.ui.core.js"></script> 
<script src="http://jqueryui.com/ui/jquery.ui.widget.js"></script> 
<script src="http://jqueryui.com/ui/jquery.ui.mouse.js"></script> 
<script src="http://jqueryui.com/ui/jquery.ui.resizable.js"></script> 
<script src="http://jqueryui.com/ui/jquery.ui.draggable.js"></script> 

的錯誤是

Webpage error details 

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0) 
Timestamp: Wed, 10 Aug 2011 16:03:33 UTC 


Message: 'jQuery' is undefined 
Line: 10 
Char: 1 
Code: 0 
URI: http://jqueryui.com/ui/jquery.ui.core.js 


Message: 'jQuery' is undefined 
Line: 10 
Char: 1 
Code: 0 
URI: http://jqueryui.com/ui/jquery.ui.widget.js 


Message: 'jQuery' is undefined 
Line: 13 
Char: 1 
Code: 0 
URI: http://jqueryui.com/ui/jquery.ui.mouse.js 


Message: 'jQuery' is undefined 
Line: 15 
Char: 1 
Code: 0 
URI: http://jqueryui.com/ui/jquery.ui.resizable.js 


Message: 'jQuery' is undefined 
Line: 15 
Char: 1 
Code: 0 
URI: http://jqueryui.com/ui/jquery.ui.draggable.js 
+0

檢查您是否缺少jquery,嘗試從外部獲取它,否則就像您使用jqueryui一樣。 – atzu

+0

你可以在網頁上發佈''和任何'' – stslavik

+0

@atzu的庫從jquery.com,我編輯原始消息。 – user823527

回答

0

這是正確的行爲。只需檢查您的文件中的路徑jquery源代碼 - 它被設置爲jqueryUI網站。

http://jqueryui.com/jquery-1.5.1.js 

更好的想法(如stslavik建議)使用CDN存儲庫之一。有關詳細信息,請查看jQuery文檔頁面:

http://docs.jquery.com/Downloading_jQuery#CDN_Hosted_jQuery 
+0

引用谷歌CDN解決了這個問題。 – user823527