Home  >  Article  >  Web Front-end  >  JS加jquery简单实现标签元素的显示或隐藏_javascript技巧

JS加jquery简单实现标签元素的显示或隐藏_javascript技巧

WBOY
WBOYOriginal
2016-05-16 17:21:411345browse

显示:

复制代码 代码如下:

var ul = document.getElementById("opinionSelect");
ul.style.display = 'block';

隐藏:$("#opinionSelect").fadeOut("fast");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn