gpt4 book ai didi

javascript - 仅当 div 在表格内时显示/ block 才有效

转载 作者:行者123 更新时间:2023-11-28 01:41:28 25 4
gpt4 key购买 nike

我有两个 div 想要交替隐藏/显示,当我将这两个 div 放在表格中但当它们不在表格中时我的代码工作正常,但我不想将它们放在一些 IE 问题的表格,这是我的代码

<div class="lazyLoad" id="more"><a href="javascript:openFromButton()"> <img id="yourid" src="../../images/view_more_arrow.png" border="0" height="6" width="11"></a> <a href="javascript:openFromButton()">view more</a></div></td>
<div class="lazyLoad" id="load" style="display:none"><a> <img id="your" src="../../images/loader.gif" border="0" height="6" width="11"></a></a></div></td>

function openFromButton(lastLoadedIndex) {
lastLoadedIndex = (typeof(lastLoadedIndex)=='undefined') ? '' : lastLoadedIndex;

document.getElementById('load').style.display = 'block';
document.getElementById('more').style.display = 'none';

jQuery.get('liste_ti.asp?from_item='+ lastLoadedIndex +'&param='+(new Date()).getTime(), function(data) {
//alert(data);

jQuery("#list").append(data);
if(data) {
document.getElementById('load').style.display = 'none';
document.getElementById('more').style.display = 'block';


}
else{
document.getElementById('load').style.display = 'none';
document.getElementById('more').style.display = 'none';

}
});

}

任何帮助

最佳答案

您必须缺少结束标记。

关于javascript - 仅当 div 在表格内时显示/ block 才有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25746743/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com