我想加载id等于id ('#content'+divId)
的div
例如按钮的id=1
,它必须加载来自file.php
的内容,其div等于content_1和按钮的id=2
,并且必须从file.php
加载内容等于content_2的内容。两个内容加载形成相同的文件,并且必须以不同的div显示。
这是我的js
$(document).ready(function() {
var hash = window.location.hash.substr(1);
var href = $('#nav li a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-4)){
var toLoad = hash+'.html #content_low'+divId;
$('#content'+divId).load(toLoad);
alert(divId);
}
});
$('#nav li a').click(function(){
divId = $(this).parents('li').attr('id');
var toLoad = $(this).attr('href')+'#content_low'+divId;
alert(divId);
$('#content'+divId).slideUp('normal',loadContent).delay(200);
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-$(this).attr('href').length);
function loadContent() {
$('#content'+divId).load(toLoad,showNewContent)
}
function showNewContent() {
$('#content'+divId).delay(700).slideDown($('#content'+divId).height());
}
return false;
});
});
这里是html
<ul id="nav" class="marketlist"><li id="1" class="market twobox">
<a href="external_file.php"><img src="img/projects/1.jpg" class="items" alt="" /></a>
</li><li id="2" class="market">
<a href="external_file.php"><img src="img/projects/1.jpg" class="items" alt="" /></a>
</li>
</ul>
答案 0 :(得分:0)
如果我错了,请纠正我,但你的div不包含任何id。所以永远不会有匹配。
我会按代码生成div或LI。
$('#nav').append("<li id='#content'" + divId + "'></li>");