Home > Web Front-end > JS Tutorial > jquery显示隐藏元素的实现代码_jquery

jquery显示隐藏元素的实现代码_jquery

WBOY
Release: 2016-05-23 13:15:44
Original
1553 people have browsed it
$("#id").css('display','none'); 
$("#id").css('display','block'); 
Copy after login

$("#id")[0].style.display = 'none'; 
$("#id")返回的是JQuery 
Copy after login

它是个集合肯定没有display属性 $("#firstStep").hide(500);而且可以设置时间;("#firstStep").hide(500);而且可以设置时间;

$(".class").css('display','block');

$("#id").show()表示display:block,

$("#id").hide()表示display:none;

$("#id").toggle()切换元素的可见状态。

如果元素是可见的,切换为隐藏的;

如果元素是隐藏的,切换为可见的。

以上这篇jquery显示隐藏元素的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template