我想用表格行實現切換功能。除了IE8以外,一切都很順利。我使用的腳本如下所示。jquery無法使用IE 8
<script src="jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#report tr:odd").addClass("odd");
$("#report tr:not(.odd)").hide();
$("#report tr:first-child").show();
$("#report tr.odd").click(function(){
$(this).next("tr").each(function(){ this.toggle()});
$(this).find(".arrow").toggleClass("up");
});
//$("#report").jExpand();
});
</script>
有人請幫助我..
傑西卡
什麼不起作用?你會得到什麼錯誤? – 2010-10-19 10:40:06
當我點擊行,切換功能(隱藏和顯示內容)不工作.. – jessi 2010-10-19 10:41:09
我使它$(this).next(「tr」)。toggle();但不工作(只在IE 8中),有沒有解決方案?請幫幫我。 – jessi 2010-10-19 10:50:53