1.本质
对JQ方法的扩展
2.代码感受
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<script src="../js/jquery-3.3.1.min.js"></script>
<script>
//增加对象的方法
$.fn.extend({
methor1 :function () {
alert("现在增加的是对象的方法");
}
})
$.extend({
methor2:function () {
alert("现在增加的是JQ本身的方法")
}
})
$(function () {
$("#test1").click(function () {
$("#test1").methor1();
});
$("#test2").click(function () {
$.methor2();
})
})
</script>
<body>
<input id="test1" type="button" value="必须在对象里操作"><br>
<input id="test2" type="button" value="不需要对象也能操作">
</body>
</html>