-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jquery 简介 #5
Comments
基本选择器Query 元素选择器 jQuery 使用 CSS 选择器来选取 HTML 元素。 $("p") 选取 元素。 $("p.intro") 选取所有 class="intro" 的 元素。 $("p#demo") 选取所有 id="demo" 的 元素。 jQuery 使用 XPath 表达式来选择带有给定属性的元素。 $("[href]") 选取所有带有 href 属性的元素。 $("[href='#']") 选取所有带有 href 值等于 "#" 的元素。 $("[href!='#']") 选取所有带有 href 值不等于 "#" 的元素。
jQuery CSS 选择器可用于改变 HTML 元素的 CSS 属性。 下面的例子把所有 p 元素的背景颜色更改为红色: |
|
需要首先使用 jquery 库,才可以使用 JQuery 方法的选择器。 |
http://www.w3school.com.cn/jquery/jquery_ref_selectors.asp 元素 元素
|
$ 符号就是选择器,好认识。 |
跟 CSS 语法类似,可以好好学习 JQuery 跟 CSS 了。相互沟通的。 |
代码风格,跟 js 等同。
JQuery 选择器
就是去找页面的各个元素。方便修改属性。写法类似 CSS。
The text was updated successfully, but these errors were encountered: