5条回答 默认 最新
斯洛文尼亚旅游 2015-10-23 03:08关注function details(userid) { var ta = document.getElementById(userid); ta.style.display = ta.style.display == 'none' ? 'block' : 'none'; }解决 无用评论 打赏 举报
function details(userid) {
var ta = document.getElementById(userid);
ta.style.display = ta.style.display == 'none' ? 'block' : 'none';
}