概念: 一个JavaScript框架。简化JS开发
* jQuery是一个快速、简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架)。jQuery设计的宗旨 是“write Less,Do More
”,即倡导写更少的代码,做更多的事情。它封装JavaScript常用的功能代码,提供一种简便的JavaScript设计模式,优 化HTML文档操作、事件处理、动画设计和Ajax交互。
JavaScript框架:本质上就是一些js文件,封装了js的原生代码而已
1.下载JQuery
目前jQuery有三个大版本:
1.x:兼容ie678,使用最为广泛的,官方只做BUG维护,
功能不再新增。因此一般项目来说,使用1.x版本就可以了,
最终版本:1.12.4 (2016年5月20日)
2.x:不兼容ie678,很少有人使用,官方只做BUG维护,
功能不再新增。如果不考虑兼容低版本的浏览器可以使用2.x,
最终版本:2.2.4 (2016年5月20日)
3.x:不兼容ie678,只支持最新的浏览器。除非特殊要求,
一般不会使用3.x版本的,很多老的jQuery插件不支持这个版本。
目前该版本是官方主要更新维护的版本。最新版本:3.2.1(2017年3月20日)
var div1 = $("#div1");
alert(div1.html());
选择器的概念:筛选具有相似特征的元素(标签)
1. 事件绑定
//1.获取b1按钮
$("#b1").click(function(){
alert("abc");
});
2. 入口函数
$(function () {
});
window.onload
和$(function)
区别
window.onload 只能定义一次,如果定义多次,后边的会将前边的覆盖掉
$(function)可以定义多次的。
3. 样式控制:css方法
// $("#div1").css("background-color","red");
$("#div1").css("backgroundColor","pink");
$("html标签名")
获得所有匹配标签名称的元素//
$("#b1").click(function () {
$("#one").css("backgroundColor","pink");
});
$("#id的属性值")
获得与指定id属性值匹配的元素 //
$("#b1").click(function () {
$("#one").css("backgroundColor","pink");
});
$(".class的属性值")
获得与指定的class属性值匹配的元素//
$("#b3").click(function () {
$(".mini").css("backgroundColor","pink");
});
$("选择器1,选择器2....")
获取多个选择器选中的所有元素//
$("#b4").click(function () {
$("span,#two").css("background","blue");
})
(A>B>C)
$("A B ")
选择A
元素内部的所有B
元素(相当于选择B元素
)//
$("#b1").click(function () {
$("body div").css("backgroundColor","red");
});
$("A > B")
选择A
元素内部的所有B
的子元素
(相当于选择C元素
)下面的例子写的是:改变 <body> 内 2.(值不等于)语法2: attr和prop区别? 这里声明的second是一个样式 样式 script代码 样式 script代码 样式 script代码 样式 script代码子
红色
//
$("#b2").click(function () {
$("body > div").css("backgroundColor","blue");
});
2.3属性选择器
语法: $(“A[属性名]”) 包含指定属性的选择器//
$("#b1").click(function () {
$("div[title]").css("backgroundColor","red");
});
1.(值等于)语法1: $("A[属性名='值']")
包含指定属性等于指定值的选择器//
$("#b2").click(function () {
$("div[title = 'test']").css("backgroundColor","red");
});
$("A[属性名!='值']")
包含指定属性等于指定值的选择器//
$("#b3").click(function () {
$("div[title != 'test']").css("backgroundColor","blue");
});
//
$("#b4").click(function () {
$("div[title ^= 'te']").css("backgroundColor","pink");
});
//
$("#b5").click(function () {
$("div[title $= 'est']").css("backgroundColor","red");
});
//
$("#b6").click(function () {
$("div[title *= 'es']").css("backgroundColor","black");
});
语法: $("A[属性名='值'][]...")
包含多个属性条件的选择器//
$("#b7").click(function () {
$("div[id][title *= 'es']").css("backgroundColor","pink");
});
2.4过滤选择器
语法: :first
获得选择的元素中的第一个元素//
$("#b1").click(function () {
$('div:first').css("backgroundColor","red");
});
语法: :last
获得选择的元素中的最后一个元素//
$("#b2").click(function () {
$('div:last').css("backgroundColor","red");
});
语法: :not(selector)
不包括指定内容的元素//
$("#b3").click(function () {
$('div:not(.one)').css("backgroundColor","red");
});
语法: :even 偶数
,从 0 开始计数//
$("#b4").click(function () {
$('div:even').css("backgroundColor","red");
});
语法: :odd 奇数
,从 0 开始计数//
$("#b5").click(function () {
$('div:odd').css("backgroundColor","red");
});
语法: :eq(index)
指定索引元素//
$("#b7").click(function () {
$('div:eq(3)').css("backgroundColor","red");
});
语法: :gt(index)
大于指定索引元素//
$("#b6").click(function () {
$('div:gt(3)').css("backgroundColor","red");
});
语法: :lt(index)
小于指定索引元素//
$("#b8").click(function () {
$('div:lt(3)').css("backgroundColor","red");
});
语法: :header
获得标题(h1~h6)元素,固定写法//
$("#b9").click(function () {
$(':header').css("backgroundColor","red");
});
2.5表单过滤器
语法: :enabled
获得可用元素//
$('#b1').click(function () {
$("input[type='text']:enabled").val("aaa")
})
语法: :disabled
获得不可用元素/ <input type="button" value=" 利用 jQuery 对象的 val() 方法改变表单内不可用 元素的值" id="b2"/>
$('#b2').click(function () {
$("input[type='text']:disabled").val("bbb")
})
语法: :checked
获得单选/复选框选中
的元素//
//复选框
$('#b3').click(function () {
alert($("input[type='checkbox']:checked").length)
})
//单选框
$('#b3').click(function () {
alert($("input[type='radio']:checked").length)
})
语法: :selected
获得下拉框选中的元素//
$('#b4').click(function () {
alert($("#job > option:selected").length)
})
Dom操作
1.内容操作
html()
: 获取/设置元素的标签体内容 内容 --> 内容// 获取myinput 的value值
alert($("#myinput[value]").val())
text()
: 获取/设置元素的标签体纯文本内容 内容 --> 内容// 获取mydiv的标签体内容
alert($("#mydiv").html())
val()
: 获取/设置元素的value属性值// 获取mydiv文本内容
alert($("#mydiv").text())
2.属性操作
2.1 通用属性操作
attr()
: 获取/设置元素的属性//获取北京节点的name属性值
alert($("#bj").attr("name"))
removeAttr()
:删除属性//删除北京节点的name属性并检验name属性是否存在
$("#bj").removeAttr("name");
prop()
:获取/设置元素的属性//获得hobby的的选中状态
alert($("#hobby").prop("checked"))
removeProp()
:删除属性 alert($("#hobby").removeProp("checked"))
是w3c里面元素含有的才是prop
)自己定义的才是attr
)2.2 对class属性操作
/*待用的样式*/
.second{
width: 300px;
height: 340px;
margin: 20px;
background: yellow;
border: pink 3px dotted;
float:left;
font-size: 22px;
font-family:Roman;
}
addClass()
:添加class属性值//
$("#b1").click(function () {
$("#one").prop("class","second")
})
$("#b2").click(function () {
$("#one").addClass("second")
})
removeClass()
:删除class属性值//
$("#b3").click(function () {
$("#one").removeClass("second")
})
toggleClass()
:切换class属性
//
$("#b4").click(function () {
$("#one").toggleClass("second")
})
css()
:获取样式//
$("#b5").click(function () {
alert($("#one").css("backgroundColor"))
})
//
$("#b6").click(function () {
$("#one").css("backgroundColor","green")
})
3.CRUD操作
append()
:父元素将子元素追加到末尾
对象1.append(对象2): 将对象2添加到对象1元素内部,并且在末尾//
$("#b1").click(function () {
$("#city").append($("#fk"));
})
prepend()
:父元素将子元素追加到开头
对象1.prepend(对象2):将对象2添加到对象1元素内部,并且在开头//
$("#b2").click(function () {
$("#city").prepend($("#fk"));
})
appendTo()
:
对象1.appendTo(对象2):将对象1添加到对象2内部,并且在末尾$("#b1").click(function () {
$("#fk").appendTo($("#city"));
})
prependTo()
:
对象1.prependTo(对象2):将对象1添加到对象2内部,并且在开头$("#b2").click(function () {
$("#fk").prependTo($("#city"));
})
after()
:添加元素到元素后边
对象1.after(对象2): 将对象2添加到对象1后边。对象1和对象2是兄弟关系$("#b3").click(function () {
$("#tj").after($("#fk"));
})
before()
:添加元素到元素前边
对象1.before(对象2): 将对象2添加到对象1前边。对象1和对象2是兄弟关系$("#b3").click(function () {
$("#tj").before($("#fk"));
})
insertAfter()
对象1.insertAfter(对象2):将对象2添加到对象1后边。对象1和对象2是兄弟关系//
$("#b3").click(function () {
$("#fk").insertAfter($("#tj"));
})
insertBefore()
对象1.insertBefore(对象2): 将对象2添加到对象1前边。对象1和对象2是兄弟关系//
$("#b4").click(function () {
$("#fk").insertBefore($("#tj"));
})
案例
1.隔行换色
<body>
<table id="tab1" border="1" width="800" align="center" >
<tr>
<td colspan="5"><input type="button" value="删除"></td>
</tr>
<tr style="background-color: #999999;">
<th><input type="checkbox"></th>
<th>分类ID</th>
<th>分类名称</th>
<th>分类描述</th>
<th>操作</th>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>1</td>
<td>手机数码</td>
<td>手机数码类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>2</td>
<td>电脑办公</td>
<td>电脑办公类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>3</td>
<td>鞋靴箱包</td>
<td>鞋靴箱包类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox"></td>
<td>4</td>
<td>家居饰品</td>
<td>家居饰品类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
</table>
</body>
<script>
//需求:将数据行的奇数行背景色设置为 pink,偶数行背景色设置为 yellow
$(function () {
$("tr:gt(1):odd").css("backgroundColor","pink")
$("tr:gt(1):even").css("backgroundColor","yellow")
})
</script>
2.全选和全不选
<body>
<table id="tab1" border="1" width="800" align="center" >
<tr>
<td colspan="5"><input type="button" value="删除"></td>
</tr>
<tr>
<th><input type="checkbox" onclick="selectAll(this)" ></th>
<th>分类ID</th>
<th>分类名称</th>
<th>分类描述</th>
<th>操作</th>
</tr>
<tr>
<td><input type="checkbox" class="itemSelect"></td>
<td>1</td>
<td>手机数码</td>
<td>手机数码类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox" class="itemSelect"></td>
<td>2</td>
<td>电脑办公</td>
<td>电脑办公类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox" class="itemSelect"></td>
<td>3</td>
<td>鞋靴箱包</td>
<td>鞋靴箱包类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
<tr>
<td><input type="checkbox" class="itemSelect"></td>
<td>4</td>
<td>家居饰品</td>
<td>家居饰品类商品</td>
<td><a href="">修改</a>|<a href="">删除</a></td>
</tr>
</table>
</body>
<script>
function selectAll(obj) {
$(".itemSelect").prop("checked", obj.checked);
}
</script>
3.QQ表情选择
<body>
<div class="emoji">
<ul>
<li><img src="img/01.gif" height="22" width="22" alt="" /></li>
<li><img src="img/02.gif" height="22" width="22" alt="" /></li>
<li><img src="img/03.gif" height="22" width="22" alt="" /></li>
<li><img src="img/04.gif" height="22" width="22" alt="" /></li>
<li><img src="img/05.gif" height="22" width="22" alt="" /></li>
<li><img src="img/06.gif" height="22" width="22" alt="" /></li>
<li><img src="img/07.gif" height="22" width="22" alt="" /></li>
<li><img src="img/08.gif" height="22" width="22" alt="" /></li>
<li><img src="img/09.gif" height="22" width="22" alt="" /></li>
<li><img src="img/10.gif" height="22" width="22" alt="" /></li>
<li><img src="img/11.gif" height="22" width="22" alt="" /></li>
<li><img src="img/12.gif" height="22" width="22" alt="" /></li>
</ul>
<p class="word">
<strong>请发言:</strong>
<img src="img/12.gif" height="22" width="22" alt="" />
</p>
</div>
</body>
<script>
//需求:点击qq表情,将其追加到发言框中
$(function () {
$("ul img").click(function () {
$(".word").append($(this).clone())
})
})
</script>
4.多选下拉列表左右移动
<body>
<div class="border">
<select id="leftName" multiple="multiple">
<option>张三</option>
<option>李四</option>
<option>王五</option>
<option>赵六</option>
</select>
<div id="btn">
<input type="button" id="toRight" value="-->"><br>
<input type="button" id="toLeft" value="<--">
</div>
<select id="rightName" multiple="multiple">
<option>钱七</option>
</select>
</div>
</body>
<script>
//需求:实现下拉列表选择条目左右选择功能
//左边——到右边
$(function () {
/*var $leftName = $("#leftName > option:selected");
$("#toRight").click(function () {
$("#rightName").append($($leftName));
})*/
$("#toRight").click(function () {
$("#rightName").append($("#leftName > option:selected"))
})
$("#toLeft").click(function () {
$("#leftName").append($("#rightName > option:selected"))
})
})
</script>