您好我正在使用jQuery加载从链接中获取一个ahref然后我想从页面加载一个div我进入一个div所以试过这个:
// 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'中的空格但是没有帮助,我们将非常感谢任何帮助。
答案 0 :(得分:1)
你应该试试这个
$(document).ready(function(){
$('#navigationLinks a:not(:first-child)').click(function(e){
var href = e.target;
$('#content').load(href + ' #resultDiv');
e.preventDefault();
});
});
问题是var href = $('#navigationLinks a').attr('href');
将始终获取块中的第一个链接,而不是实际链接。