JS加jquery简单实现标签元素的显示或隐藏
内容摘要
显示: 复制代码 代码如下: var ul = document.getElementById("opinionSelect"); ul.style.display = 'block'; 隐藏:$("#opinionSelect").fadeOut("fast");
文章正文
显示:
var ul = document.getElementById("opinionSelect");
ul.style.display = 'block';
隐藏:$("#opinionSelect").fadeOut("fast");
复制代码 代码如下:
var ul = document.getElementById("opinionSelect");
ul.style.display = 'block';
隐藏:$("#opinionSelect").fadeOut("fast");
代码注释