怎么通过js隐藏列,不用条件属性。举个例子,A,B两列,我隐藏了A列,原来的B列我想它换到A列的位置。用toggle,hide,remove我都试过了,B列的位置都不会改变。有没有办法能实现我的想法
aa.7z
$("td[id^='I3']").toggle();
你看下
setTimeout(function(){ $('[id^="A"]').hide(); },10)
参考 https://bbs.fanruan.com/wenda/question/19281.html