JS加jquery简单实现标签元素的显示或隐藏
人气:0
显示:
var ul = document.getElementById("opinionSelect");
ul.style.display = 'block';
隐藏:$("#opinionSelect").fadeOut("fast");
复制代码 代码如下:
var ul = document.getElementById("opinionSelect");
ul.style.display = 'block';
隐藏:$("#opinionSelect").fadeOut("fast");
加载全部内容