我有一個HTML頁面,裏面有jQuery和JavaScript。 我進口我需要在頭標記庫:jQuery導入jQuery
<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.18/themes/base/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/external/jquery.bgiframe-2.1.2.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/minified/i18n/jquery-ui-i18n.min.js" type="text/javascript"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places" type="text/javascript"></script>
於是我進口一些HTML使用jQuery裏面:
$('#cliente').click(function(){$('#container').load('/clienti/cliente');});
但jQuery的內部加載頁面無法正常工作。 (我確信代碼是正確的,就像單獨工作一樣)。
我需要做點什麼嗎?我試圖在腳本之前導入導入頁面中的庫(不在工作狀態),但不工作。 我沒有其他想法!
你還需要在'/ clienti/cliente'中加載jQuery,但是它不會有任何意義,'load'不會評估你的js,據我所知:S –
就像你一樣,你不應該直接從Google Code源代碼控件加載JS。這是一個重要的安全/穩定性問題。 –
從'tags/latest'加載jQuery是麻煩的祕訣。 服務器日誌顯示'/ clienti/client'調用是否成功? –