问题描述
解决方案
function details(userid) { var ta = document.getElementById(userid); ta.style.display = ta.style.display == 'none' ? 'block' : 'none'; }
解决方案二: function details(userid){ var ta = document.getElementId(userid); ta.style.display = ta.style.display == 'none'? 'block' : 'none'; }
我这样写了,没有反应
解决方案三:
jquery的slideToggle方法
$(""#""+userid).slideToggle();
解决方案四:
现在效果可以了,但是还差一点,就是我点击第二个链接的时候上一个链接的隐藏文本框还在显示,这样就显着不好看了
解决方案五:
$(""#id"").hide();
时间: 2024-09-19 11:16:30