1,下载和导入jquery的插件包(类似bookstrate)
2.引用的时候是和js是一样的
3.jQuery 语法实例
- $(this).hide()
- 隐藏当前的 HTML 元素。
- $("#test").hide()
- 隐藏 id="test" 的元素。
- $("p").hide()
- 隐藏所有 <p> 元素。
- $(".test").hide()
- 隐藏所有 class="test" 的元素。
-
4.jQuery元素选择器
1.jQuery 使用 CSS 选择器来选取 HTML 元素。
2.$("p") 选取 <p> 元素。
3.$("p.intro") 选取所有 class="intro" 的 <p> 元素。
4.$("p#demo") 选取所有 id="demo" 的 <p> 元素。
5.jQuery属性选择器
jQuery 使用 XPath 表达式来选择带有给定属性的元素。
$("[href]") 选取所有带有 href 属性的元素。
$("[href='#']") 选取所有带有 href 值等于 "#" 的元素。
$("[href!='#']") 选取所有带有 href 值不等于 "#" 的元素。
$("[href$='.jpg']") 选取所有 href 值以 ".jpg" 结尾的元素。
注意:刚开始我也不知道下面那是什么代码,后来我才知道这是为了防止文档在完全加载(就绪)之前运行 jQuery 代码。
$(document).ready(function(){ --- jQuery functions go here ---- });
下面是练习代码:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>jquary1</title> <script src="jquery-3.1.1.min.js"></script> </head> <body> <p>Hello man!!</p> <p id="p">Hello word</p> <p calss="a">hhahhahahah</p> <button>按钮</button> <script type="text/javascript"> $(document).ready(function(){ $('button').click( function(){ // $("p").hide(); //$("P.a").hide(); $("#p").html("FUCK!") } ); });