How to determine whether an element is hidden in jquery

coldplay.xixi
Release: 2020-11-30 17:06:17
Original
1912 people have browsed it

Jquery method to determine whether an element is hidden: 1. Use CSS attributes, the code is [var display =$('#id').css('display')]; 2. Use jQuery to determine whether the object is displayed Grammar, the code is [$(".test").css("display].

How to determine whether an element is hidden in jquery

The operating environment of this tutorial: Windows 7 system, jquery version 2.2.4, This method is applicable to all brands of computers.

Jquery method to determine whether an element is hidden:

1. Use CSS attributes

var display =$('#id').css('display'); if(display == 'none'){ alert("none为隐藏"); }
Copy after login

2. jQuery determines elements

var node=$('#id');
Copy after login

The first way of writing

if(node.is(':hidden')){  //如果node是隐藏的则显示node元素,否则隐藏   node.show();  }else{   node.hide(); }
Copy after login

The second way of writing

if(node.is(':visible')){  //如果node是显示的则隐藏node元素,否则显示   node.hide(); }else{   node.show(); }
Copy after login

3.jQuery determines objects Whether to display syntax

$(".test").css("display") $(".test").is(":visible") $(".test").is(":hidden") $(element).is(":visible") // 返回值 display:[none|block], hidden和visible:[true|false]
Copy after login

Related free learning recommendations:JavaScript(video)

The above is the detailed content of How to determine whether an element is hidden in jquery. For more information, please follow other related articles on the PHP Chinese website!

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!