jquery支持所有的css选择器
* * *
操作流程
1.打开网站
![](https://box.kancloud.cn/43d285fd37ca60ca631a40b8d80c12e0_1027x342.png)
2点击jquery
.![](https://box.kancloud.cn/d4dfe8d6367a2c0bc2a1e22e6a00d7ca_358x159.png)
3.获取粘贴在title的上方
![](https://box.kancloud.cn/9a7af374d0bfe6ff91dfa8ee05985360_640x145.png)
* * *
### 获取dom节点
~~~
var test = $('#test');
~~~
![](https://box.kancloud.cn/6e3bb9723a2b3387cf697a34e8fcb364_168x86.png)
~~~
test.click(function(){
console.log("hello world")
~~~
事件
~~~
$(selector).css({})
$(selector).html()
~~~
改变样式与内容
~~~
test.click(function(){
$(this).css({color:"red",backgroundColor:"yellow"}).html("change")
})
~~~
* * *
点击变色
~~~
<style>
li{
cursor: pointer;
}
.active{
color:red;
//active类显示红色
}
</style>
</head>
<body>
<ul>
<li class="active">手机</li>
<li>平板</li>
<li>电脑</li>
</ul>
<script>
/* 点击li,让当前项添加active-class,让兄弟项移除active-class */
$("li").click(function(){ $(this).addClass('active').siblings().removeClass('active')
})
// siblings :获取兄弟元素
</script>
</body>
*****
~~~
- 第一章 git
- 1.1 git基本语法
- 1.2 版本回退
- 1.3 ssh的配置
- 第二章 markdown基本语法
- 第三章 HTML CSS
- 3.1 html基础知识
- 3.2 css基础
- 3.3 img垂直居中
- 3.4 清除鼠标悬停抖动
- 3.5 字体、列表、表格、文本、链接样式
- 3.6 属性继承
- 3.7 float
- 3.8 定位
- 3.9 li加边框文字移动问题
- 3.10 title旁边的小图标
- 第四章 Vue
- 4.1
- 第五章 JavaScript
- 5.1 基本语法
- 5.2 DOM事件
- 5.3 事件
- 5.4 jQuery引用
- 5.5 显示与隐藏
- 5.6 回到顶部
- 第六章 jQuery
- 6.1 基础语法