Home  >  Article  >  Web Front-end  >  How to determine whether an element is hidden in jquery

How to determine whether an element is hidden in jquery

coldplay.xixi
coldplay.xixiOriginal
2020-11-26 09:34:012320browse

Jquery method to determine whether an element is hidden: 1. If node is hidden, display the node element, otherwise it is hidden. The code is [if(node.is(':hidden'))]; 2. If node If it is displayed, the node element is hidden, otherwise it is displayed.

How to determine whether an element is hidden in jquery

The operating environment of this tutorial: Windows 7 system, jquery version 3.2.1. This method is suitable for all brands of computers.

How jquery determines whether an element is hidden:

The first way of writing

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

The second way of writing

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

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!

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