jquery 元素选择器入门例子

发布时间:2020-08-18编辑:脚本学堂
有关jquery元素选择器的用法,jquery选择器实现隐藏div元素,通过实例体验jquery 元素选择器的用法,感兴趣的朋友参考下。

jquery 元素选择器用法

jquery 元素选择器

在jquery中,元素选择器根据元素名称匹配所有的元素

例子:
 

$("div")
 

以上代码匹配所有的div元素。

例子:
 

复制代码 代码示例:
<!DOCTYPE html>  
<html>  
<head>  
<meta charset=" utf-8">  
<title>元素选择器-www.plcxue.com</title>
<style type="text/css">
div{
  height:150px;
  width:150px;
  background-color:green;
}
</style>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("button").click(function(){
    $("div").hide();
  })
})
</script>
</head>
<body>
<div></div>
<button>点击隐藏div元素</button>
<p>当点击按钮时,会将div元素隐藏。</p>
</body>
</html>