仅当div在表格内时,显示/块才有效

时间:2014-09-09 14:07:46

标签: javascript jquery html

我有两个我想要隐藏/显示的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';

}
 });

 }

任何帮助

1 个答案:

答案 0 :(得分:1)

您必须错过结束标记。