我有一個問題,我爲難我的代碼無法正常工作,我嘗試在單擊列表項錨點標記時將PHP文件加載到div中。Jquery.Load on click not working
代碼:
<script type="text/javascript">
$(document).ready(function() {
//I have these 2 functions aswell that DO work
$(".itm1 a").click(function(evt) {
var page = $(this).attr('href');
$("#page1").load(page);
evt.preventDefault();
});
$(".footnav a").click(function(evt) {
var page3 = $(this).attr('href');
$("#page1").load(page3);
evt.preventDefault();
});
// ---------------------------
$(".needslist a").click(function(evt) {
var page4 = $(this).attr('rel');
$("#page1").load(page4)
evt.preventDefault();
});
});
</script>
<ul>
<li class="needslist"><span><a rel="/ceos.php" href="#">Are you a CEO SPEECH-MAKER or ENTREPRENEURIAL VISIONARY?</a></span><br />
who wants the best advice and counsel from an expert coach for your own speeches and leadership events that include speaking to investors, stakeholders, business collaborators, board of directors, conferences and/or the media?</li><br />
</ul>
誰能提供一個explination爲什麼它不工作?
編輯: 好的夥計們,所以我發現一旦我加載一個div的ajax,該內容變得無法處理jQuery。這是我的問題....如何執行jquery腳本加載的內容???? !!!
是什麼'#page1'這裏?在加載 – 2012-08-15 19:00:09
之後,你還有一個輸入錯誤的';'你是否有任何錯誤? – MrOBrian 2012-08-15 19:03:54
#page1是試圖將php文件加載到...並沒有錯誤 – onei0120 2012-08-15 19:05:17