知识重点:
1、导入jq资源库,建议可以使用百度程序员类库,类库地址为:
百度程序员类库:http://cdn.code.baidu.com/
jq导入资源库地址为:http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js
导入方法为:
一、先导入jq类库,导入方式为:
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js">
</script>
二、调取js代码,在js代码中填写jq代码:
<script type="text/javascript">
</script>
2、代码语法:
一、 $('li:first-child')(选中标签)
二、.css({'background-color':'red'})(修改标签或属性,css部分需要用{}花括号括住且需要用单引号括住。)
代码部分:
实例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>1.jQuery的基本工作原理</title> <style type="text/css"> ul { margin:30px; padding:10px; overflow: hidden; } li { list-style-type: none; width: 40px; height: 40px; margin-left:10px; background-color: lightskyblue; text-align: center; line-height: 40px; font-size: 1.2em; font-weight: bolder; float:left; border-radius: 50%; box-shadow: 2px 2px 2px #808080; } /*将第一个li背景换成绿色*/ li:first-child { /*background-color: lightgreen;*/ } /*再将第4个元素背景换成橙色,前景换成白色*/ li:nth-child(4) { /*background-color: orangered;*/ /*color: white;*/ } li:nth-child(4) ~ * { /*background-color: lightgreen;*/ } </style> </head> <body> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> <li>7</li> <li>8</li> <li>9</li> <li>10</li> </ul> </body> </html> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> <script type="text/javascript"> $('li:first-child').css({'background-color':'red'}) </script>
运行实例 »
点击 "运行实例" 按钮查看在线实例