0
嗨,我使用jQuery負荷抓住從一個鏈接AHREF,然後我想從加載網頁IM進入一個div等等都試過這一個div:jQuery的負載變量將不會加載內容
// lets load the contents
$('#navigationLinks a:not(:first-child)').click(function(event){
$('#wrapper').animate({
'left':'0px'
});
var href = $('#navigationLinks a').attr('href');
$('#content').load(href + ' #resultDiv');
event.preventDefault();
});
這是HTML:
<div id="navigationLinks">
<a href="index.html" id="dashboardHome">Dashboard Home</a>
<a href="industry-overview.html" title="Industry Overview" class="first currentLink">Industry Overview</a>
<a href="regions.html" title="Regions">Regions</a>
<a href="industries.html" title="Industries">Industries</a>
<a href="security-pipeline.html" title="Security Pipeline">Security Pipeline</a>
<a href="audit-events-issues.html" title="Audit Events & Issues">Audit Events & Issues</a>
<a href="account-filter.html" title="Account Filter">Account Filter</a>
<a href="contractual-delivered-services.html" title="Contractual vs. Delivered Services" class="last">Contractual vs. Delivered Services</a>
</div>
我試過#前「#resultDiv」去掉空間,但沒有幫助,任何幫助將不勝感激。
對不起,我不知道答案,但你可以console.log()並確認所有的作品正在工作:1.事件正在發射2. href是有效的3.該查詢#content正在返回的東西? 請注意,您可以使用'var href = jQuery(this).attr('href');'。更高效。 – spinkus 2013-02-15 10:57:43