来自http://tunps.com/ie6-display-table-row
IE6对CSS代码:display:table-row不支持。
解决方法,将值改为‘’,就是为空字符串。
比如:
group_tr3.style.display='table-row';
改为:
group_tr3.style.display='';
同时兼容各个浏览器。
来自http://tunps.com/ie6-display-table-row
IE6对CSS代码:display:table-row不支持。
解决方法,将值改为‘’,就是为空字符串。
比如:
group_tr3.style.display='table-row';
改为:
group_tr3.style.display='';
同时兼容各个浏览器。