前端之Jquery

jQuery

jQuery介紹

  1. jQuery是一個輕量級的、兼容多瀏覽器的JavaScript庫。
  2. jQuery使用戶可以更方便地處理HTML Document、Events、實現動畫效果、方便地進行Ajax交互,可以極大地簡化JavaScript編程。它的宗旨就是:「Write less, do more.「

jQuery的優點

  1. 一款輕量級的JS框架。jQuery核心js文件才幾十kb,不會影響頁面加載速度。
  2. 豐富的DOM選擇器,jQuery的選擇器用起來很方便,好比要找到某個DOM對象的相鄰元素,JS可能要寫好幾行代碼,而jQuery一行代碼就搞定了,再好比要將一個表格的隔行變色,jQuery也是一行代碼搞定。
  3. 鏈式表達式。jQuery的鏈式操做能夠把多個操做寫在一行代碼裏,更加簡潔。
  4. 事件、樣式、動畫支持。jQuery還簡化了js操做css的代碼,而且代碼的可讀性也比js要強。
  5. Ajax操做支持。jQuery簡化了AJAX操做,後端只需返回一個JSON格式的字符串就能完成與前端的通訊。
  6. 跨瀏覽器兼容。jQuery基本兼容瞭如今主流的瀏覽器,不用再爲瀏覽器的兼容問題而傷透腦筋。
  7. 插件擴展開發。jQuery有着豐富的第三方的插件,例如:樹形菜單、日期控件、圖片切換插件、彈出窗口等等基本前端頁面上的組件都有對應插件,而且用jQuery插件作出來的效果很炫,而且能夠根據本身須要去改寫和封裝插件,簡單實用。

jQuery內容:

  1. 選擇器
  2. 篩選器
  3. 樣式操做
  4. 文本操做
  5. 屬性操做
  6. 文檔處理
  7. 事件
  8. 動畫效果
  9. 插件
  10. each、data、Ajax

下載連接:jQuery官網javascript

中文文檔:jQuery AP中文文檔css

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,只支持最新的瀏覽器。須要注意的是不少老的jQuery插件不支持3.x版。目前該版本是官方主要更新維護的版本。

維護IE678是一件讓人頭疼的事情,通常咱們都會額外加載一個CSS和JS單獨處理。值得慶幸的是使用這些瀏覽器的人也逐步減小,PC端用戶已經逐步被移動端用戶所取代,若是沒有特殊要求的話,通常都會選擇放棄對678的支持。html

jQuery對象

jQuery對象就是經過jQuery包裝DOM對象後產生的對象。jQuery對象是 jQuery獨有的。若是一個對象是 jQuery對象,那麼它就可使用jQuery裏的方法:例如$(「#i1」).html()。前端

$("#i1").html()的意思是:獲取id值爲 i1的元素的html代碼。其中 html()是jQuery裏的方法。java

至關於: document.getElementById("i1").innerHTML;jquery

雖然 jQuery對象是包裝 DOM對象後產生的,可是 jQuery對象沒法使用 DOM對象的任何方法,同理 DOM對象也沒不能使用 jQuery裏的方法。web

一個約定,咱們在聲明一個jQuery對象變量的時候在變量名前面加上$:正則表達式

var $variable = jQuery對像
var variable = DOM對象
$variable[0]//jQuery對象轉成DOM對象

拿上面那個例子舉例,jQuery對象和DOM對象的使用:編程

$("#i1").html();//jQuery對象可使用jQuery的方法
$("#i1")[0].innerHTML;// DOM對象使用DOM的方法

jQuery基礎語法

$(selector).action()後端

查找標籤

基本選擇器

id選擇器:

$("#id")

標籤選擇器:

$("tagName")

class選擇器:

$(".className")

配合使用:

$("div.c1")  // 找到有c1 class類的div標籤

全部元素選擇器:

$("*")

組合選擇器:

$("#id, .className, tagName")

層級選擇器:

x和y能夠爲任意選擇器

$("x y");// x的全部後代y(子子孫孫)
$("x > y");// x的全部兒子y(兒子)
$("x + y")// 找到全部緊挨在x後面的y
$("x ~ y")// x以後全部的兄弟y

基本篩選器:

複製代碼
複製代碼
:first // 第一個
:last // 最後一個
:eq(index)// 索引等於index的那個元素
:even // 匹配全部索引值爲偶數的元素,從 0 開始計數
:odd // 匹配全部索引值爲奇數的元素,從 0 開始計數
:gt(index)// 匹配全部大於給定索引值的元素
:lt(index)// 匹配全部小於給定索引值的元素
:not(元素選擇器)// 移除全部知足not條件的標籤
:has(元素選擇器)// 選取全部包含一個或多個標籤在其內的標籤(指的是從後代元素找)
複製代碼
複製代碼

例子:

$("div:has(h1)")// 找到全部後代中有h1標籤的div標籤
$("div:has(.c1)")// 找到全部後代中有c1樣式類的div標籤
$("li:not(.c1)")// 找到全部不包含c1樣式類的li標籤
$("li:not(:has(a))")// 找到全部後代中不含a標籤的li標籤

練習:

自定義模態框,使用jQuery實現彈出和隱藏功能。

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>自定義模態框</title>
  <style>
    .cover {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: darkgrey;
      z-index: 999;
    }
    .modal {
      width: 600px;
      height: 400px;
      background-color: white;
      position: fixed;
      left: 50%;
      top: 50%;
      margin-left: -300px;
      margin-top: -200px;
      z-index: 1000;
    }
    .hide {
      display: none;
    }
  </style>
</head>
<body>
<input type="button" value="彈" id="i0">

div class="cover hide"/div
div class="modal hide"
  label for="i1"姓名/label
  input id="i1" type="text"
   label for="i2"愛好/label
  input id="i2" type="text"
  input type="button" id="i3" value="關閉"
/div
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script
  var tButton = $("#i0")[0];
  tButton.onclick=function () {
    var coverEle = $(".cover")[0];
    var modalEle = $(".modal")[0]; $(coverEle).removeClass("hide"); $(modalEle).removeClass("hide"); }; var cButton = $("#i3")[0];
  cButton.onclick=function () {
    var coverEle = $(".cover")[0];
    var modalEle = $(".modal")[0]; $(coverEle).addClass("hide"); $(modalEle).addClass("hide"); } /script
/body
/html
jQuery版自定義模態框

屬性選擇器:

[attribute]
[attribute=value]// 屬性等於
[attribute!=value]// 屬性不等於

例子:

複製代碼
複製代碼
// 示例
<input type="text">
<input type="password">
<input type="checkbox">
$("input[type='checkbox']");// 取到checkbox類型的input標籤
$("input[type!='text']");// 取到類型不是text的input標籤
複製代碼
複製代碼

表單篩選器

複製代碼
複製代碼
:text
:password
:file
:radio
:checkbox
:submit :reset :button
複製代碼
複製代碼

例子:

$(":checkbox")  // 找到全部的checkbox

表單對象屬性:

:enabled
:disabled
:checked
:selected

例子:

找到可用的input標籤

複製代碼
複製代碼
<form>
  <input name="email" disabled="disabled" />
  <input name="id" />
</form>

$("input:enabled")  // 找到可用的input標籤
複製代碼
複製代碼

 找到被選中的option:

複製代碼
複製代碼
<select id="s1">
  <option value="beijing">北京市</option>
  <option value="shanghai">上海市</option>
  <option selected value="guangzhou">廣州市</option>
  <option value="shenzhen">深圳市</option>
</select>

$(":selected")  // 找到全部被選中的option
複製代碼
複製代碼

篩選器方法

下一個元素:

$("#id").next()
$("#id").nextAll()
$("#id").nextUntil("#i2")

上一個元素:

$("#id").prev()
$("#id").prevAll()
$("#id").prevUntil("#i2")

父親元素:

$("#id").parent()
$("#id").parents()  // 查找當前元素的全部的父輩元素
$("#id").parentsUntil() // 查找當前元素的全部的父輩元素,直到遇到匹配的那個元素爲止。

兒子和兄弟元素:

$("#id").children();// 兒子們
$("#id").siblings();// 兄弟們

查找

搜索全部與指定表達式匹配的元素。這個函數是找出正在處理的元素的後代元素的好方法。

$("div").find("p")

等價於$("div p")

篩選

篩選出與指定表達式匹配的元素集合。這個方法用於縮小匹配的範圍。用逗號分隔多個表達式。

$("div").filter(".c1")  // 從結果集中過濾出有c1樣式類的

等價於 $("div.c1")

補充:

.first() // 獲取匹配的第一個元素
.last() // 獲取匹配的最後一個元素
.not() // 從匹配元素的集合中刪除與指定表達式匹配的元素
.has() // 保留包含特定後代的元素,去掉那些不含有指定後代的元素。
.eq() // 索引值等於指定值的元素

示例:左側菜單

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>左側菜單示例</title>
  <style>
    .left {
      position: fixed;
      left: 0;
      top: 0;
      width: 20%;
      height: 100%;
      background-color: rgb(47, 53, 61);
    }

    .right {
      width: 80%;
      height: 100%;
    }
    
    .menu {
      color: white;
    }
    
    .title {
      text-align: center;
      padding: 10px 15px;
      border-bottom: 1px solid #23282e;
    }
    
    .items {
      background-color: #181c20;
    
    }
    .item {
      padding: 5px 10px;
      border-bottom: 1px solid #23282e;
    }
    
    .hide {
      display: none;
    }

  /style
/head
body

div class="left"
  div class="menu"
    div class="item"
      div class="title"菜單一/div
      div class="items"
        div class="item"111/div
        div class="item"222/div
        div class="item"333/div
    /div
    /div
    div class="item"
      div class="title"菜單二/div
      div class="items hide"
      div class="item"111/div
      div class="item"222/div
      div class="item"333/div
    /div
    /div
    div class="item"
      div class="title"菜單三/div
      div class="items hide"
      div class="item"111/div
      div class="item"222/div
      div class="item"333/div
    /div
    /div
  /div
/div
div class="right"/div
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script

script
  $(".title").click(function (){  // jQuery綁定事件
    // 隱藏全部class裏有.items的標籤
    // $(".items").addClass("hide");  //批量操做
    // $(this).next().removeClass("hide");
    

    // jQuery鏈式操做
    $(this).next().removeClass('hide').parent().siblings().find('.items').addClass('hide')

  });
/script
左側菜單欄

操做標籤

樣式操做

樣式類

addClass();// 添加指定的CSS類名。
removeClass();// 移除指定的CSS類名。
hasClass();// 判斷樣式存不存在
toggleClass();// 切換CSS類名,若是有就移除,若是沒有就添加。

示例:開關燈和模態框

CSS

css("color","red")//DOM操做:tag.style.color="red"

示例:

$("p").css("color", "red"); //將全部p標籤的字體設置爲紅色

位置操做

offset()// 獲取匹配元素在當前窗口的相對偏移或設置元素位置
position()// 獲取匹配元素相對父元素的偏移
scrollTop()// 獲取匹配元素相對滾動條頂部的偏移
scrollLeft()// 獲取匹配元素相對滾動條左側的偏移

.offset()方法容許咱們檢索一個元素相對於文檔(document)的當前位置。

.position()的差異在於: .position()是相對於相對於父級元素的位移。

示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>位置相關示例之返回頂部</title>
  <style>
    .c1 {
      width: 100px;
      height: 200px;
      background-color: red;
    }

    .c2 {
      height: 50px;
      width: 50px;
    
      position: fixed;
      bottom: 15px;
      right: 15px;
      background-color: #2b669a;
    }
    .hide {
      display: none;
    }
    .c3 {
      height: 100px;
    }

  /style
/head
body
button id="b1" class="btn btn-default"點我/button
div class="c1"/div
div class="c3"1/div
div class="c3"2/div
div class="c3"3/div
div class="c3"4/div
div class="c3"5/div
div class="c3"6/div
div class="c3"7/div
div class="c3"8/div
div class="c3"9/div
div class="c3"10/div
div class="c3"11/div
div class="c3"12/div
div class="c3"13/div
div class="c3"14/div
div class="c3"15/div
div class="c3"16/div
div class="c3"17/div
div class="c3"18/div
div class="c3"19/div
div class="c3"20/div
div class="c3"21/div
div class="c3"22/div
div class="c3"23/div
div class="c3"24/div
div class="c3"25/div
div class="c3"26/div
div class="c3"27/div
div class="c3"28/div
div class="c3"29/div
div class="c3"30/div
div class="c3"31/div
div class="c3"32/div
div class="c3"33/div
div class="c3"34/div
div class="c3"35/div
div class="c3"36/div
div class="c3"37/div
div class="c3"38/div
div class="c3"39/div
div class="c3"40/div
div class="c3"41/div
div class="c3"42/div
div class="c3"43/div
div class="c3"44/div
div class="c3"45/div
div class="c3"46/div
div class="c3"47/div
div class="c3"48/div
div class="c3"49/div
div class="c3"50/div
div class="c3"51/div
div class="c3"52/div
div class="c3"53/div
div class="c3"54/div
div class="c3"55/div
div class="c3"56/div
div class="c3"57/div
div class="c3"58/div
div class="c3"59/div
div class="c3"60/div
div class="c3"61/div
div class="c3"62/div
div class="c3"63/div
div class="c3"64/div
div class="c3"65/div
div class="c3"66/div
div class="c3"67/div
div class="c3"68/div
div class="c3"69/div
div class="c3"70/div
div class="c3"71/div
div class="c3"72/div
div class="c3"73/div
div class="c3"74/div
div class="c3"75/div
div class="c3"76/div
div class="c3"77/div
div class="c3"78/div
div class="c3"79/div
div class="c3"80/div
div class="c3"81/div
div class="c3"82/div
div class="c3"83/div
div class="c3"84/div
div class="c3"85/div
div class="c3"86/div
div class="c3"87/div
div class="c3"88/div
div class="c3"89/div
div class="c3"90/div
div class="c3"91/div
div class="c3"92/div
div class="c3"93/div
div class="c3"94/div
div class="c3"95/div
div class="c3"96/div
div class="c3"97/div
div class="c3"98/div
div class="c3"99/div
div class="c3"100/div

button id="b2" class="btn btn-default c2 hide"返回頂部/button
script src="jquery-3.2.1.min.js"/script
script
  $("#b1").on("click", function () {
    $(".c1").offset({left: 200, top:200}); }); (window).scroll(function () { if ($(window).scrollTop() > 100) { $("#b2").removeClass("hide"); }else { $("#b2").addClass("hide"); } }); ("#b2").on("click", function () {
    $(window).scrollTop(0);
  })
/script
/body
/html
返回頂部示例

尺寸:

複製代碼
複製代碼
height()
width()
innerHeight()
innerWidth()
outerHeight()
outerWidth()
複製代碼
複製代碼

文本操做

HTML代碼:

html()// 取得第一個匹配元素的html內容
html(val)// 設置全部匹配元素的html內容

文本值:

text()// 取得全部匹配元素的內容
text(val)// 設置全部匹配元素的內容

值:

val()// 取得第一個匹配元素的當前值
val(val)// 設置全部匹配元素的值
val([val1, val2])// 設置多選的checkbox、多選select的值

例如:

複製代碼
複製代碼
<input type="checkbox" value="basketball" name="hobby">籃球
<input type="checkbox" value="football" name="hobby">足球

select multiple id="s1"
    option value="1"1/option
    option value="2"2/option
    option value="3"3/option
/select
複製代碼
複製代碼

設置值:

$("[name='hobby']").val(['basketball', 'football']);
$("#s1").val(["1", "2"])

示例:

獲取被選中的checkbox或radio的值:

<label for="c1">女</label>
<input name="gender" id="c1" type="radio" value="0">
<label for="c2">男</label>
<input name="gender" id="c2" type="radio" value="1">

可使用:

$("input[name='gender']:checked").val()
<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>文本操做之登陸驗證</title>
  <style>
    .error {
      color: red;
    }
  </style>
</head>
<body>

form action=""
  div
    label for="input-name"用戶名/label
    input type="text" id="input-name" name="name"
    span class="error"/span
  /div
  div
    label for="input-password"密碼/label
    input type="password" id="input-password" name="password"
    span class="error"/span
  /div
  div
    input type="button" id="btn" value="提交"
  /div
/form
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script
  $("#btn").click(function () {
    var username = $("#input-name").val();
    var password = $("#input-password").val(); if (username.length === 0) { $("#input-name").siblings(".error").text("用戶名不能爲空"); } if (password.length === 0) { $("#input-password").siblings(".error").text("密碼不能爲空"); } }) /script
/body
/html
自定義登陸校驗示例

屬性操做

用於ID等或自定義屬性:

attr(attrName)// 返回第一個匹配元素的屬性值
attr(attrName, attrValue)// 爲全部匹配元素設置一個屬性值
attr({k1: v1, k2:v2})// 爲全部匹配元素設置多個屬性值
removeAttr()// 從每個匹配的元素中刪除一個屬性

用於checkbox和radio

prop() // 獲取屬性
removeProp() // 移除屬性

注意:

在1.x及2.x版本的jQuery中使用attr對checkbox進行賦值操做時會出bug,在3.x版本的jQuery中則沒有這個問題。爲了兼容性,咱們在處理checkbox和radio的時候儘可能使用特定的prop(),不要使用attr("checked", "checked")。

複製代碼
複製代碼
<input type="checkbox" value="1">
<input type="radio" value="2">
<script>
  $(":checkbox[value='1']").prop("checked", true);
  $(":radio[value='2']").prop("checked", true);
</script>
複製代碼
複製代碼

prop和attr的區別:

attr全稱attribute(屬性) 

prop全稱property(屬性)

雖然都是屬性,但他們所指的屬性並不相同,attr所指的屬性是HTML標籤屬性,而prop所指的是DOM對象屬性,能夠認爲attr是顯式的,而prop是隱式的。

舉個例子:

<input type="checkbox" id="i1" value="1">

針對上面的代碼,

$("#i1").attr("checked")  // undefined
$("#i1").prop("checked")  // false

能夠看到attr獲取一個標籤內沒有的東西會獲得undefined,而prop獲取的是這個DOM對象的屬性,所以checked爲false。

若是換成下面的代碼:

<input type="checkbox" checked id="i1" value="1">

再執行:

$("#i1").attr("checked")   // checked
$("#i1").prop("checked")  // true

這已經能夠證實attr的侷限性,它的做用範圍只限於HTML標籤內的屬性,而prop獲取的是這個DOM對象的屬性,選中返回true,沒選中返回false。

接下來再看一下針對自定義屬性,attr和prop又有什麼區別:

<input type="checkbox" checked id="i1" value="1" me="自定義屬性">

執行如下代碼:

$("#i1").attr("me")   // "自定義屬性"
$("#i1").prop("me")  // undefined

能夠看到prop不支持獲取標籤的自定義屬性。

總結一下:

  1. 對於標籤上有的能看到的屬性和自定義屬性都用attr
  2. 對於返回布爾值的好比checkbox、radio和option的是否被選中都用prop。

 

練習題:全選、反選、取消

文檔處理

添加到指定元素內部的後面

$(A).append(B)// 把B追加到A
$(A).appendTo(B)// 把A追加到B

添加到指定元素內部的前面

$(A).prepend(B)// 把B前置到A
$(A).prependTo(B)// 把A前置到B

添加到指定元素外部的後面

$(A).after(B)// 把B放到A的後面
$(A).insertAfter(B)// 把A放到B的後面

添加到指定元素外部的前面

$(A).before(B)// 把B放到A的前面
$(A).insertBefore(B)// 把A放到B的前面

移除和清空元素

remove()// 從DOM中刪除全部匹配的元素。
empty()// 刪除匹配的元素集合中全部的子節點。

例子:

點擊按鈕在表格添加一行數據。

點擊每一行的刪除按鈕刪除當前行數據。

替換

replaceWith()
replaceAll()

克隆

clone()// 參數

克隆示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>克隆</title>
  <style>
    #b1 {
      background-color: deeppink;
      padding: 5px;
      color: white;
      margin: 5px;
    }
    #b2 {
      background-color: dodgerblue;
      padding: 5px;
      color: white;
      margin: 5px;
    }
  </style>
</head>
<body>

button id="b1"屠龍寶刀,點擊就送/button
hr
button id="b2"屠龍寶刀,點擊就送/button

script src="jquery-3.2.1.min.js"/script
script
  // clone方法不加參數true,克隆標籤但不克隆標籤帶的事件
  ("#b1").on("click", function () {
    $(this).clone().insertAfter(this);
  });
  // clone方法加參數true,克隆標籤而且克隆標籤帶的事件
  ("#b2").on("click", function () {
    $(this).clone(true).insertAfter(this);
  });
/script
/body
/html
點擊複製按鈕

事件

經常使用事件

複製代碼
複製代碼
click(function(){...})
hover(function(){...})
blur(function(){...})
focus(function(){...})
change(function(){...})
keyup(function(){...})
複製代碼
複製代碼

keydown和keyup事件組合示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta http-equiv="content-Type" charset="UTF-8">
    <meta http-equiv="x-ua-compatible" content="IE=edge">
    <title>Title</title>
</head>
<body>



table border="1"
  thead
  tr
    th#/th
    th姓名/th
    th操做/th
  /tr
  /thead
  tbody
  tr
    tdinput type="checkbox"/td
    tdEgon/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdAlex/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdYuan/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdEvaJ/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdGold/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  /tbody
/table

input type="button" id="b1" value="全選"
input type="button" id="b2" value="取消"
input type="button" id="b3" value="反選"

script src="jquery-3.3.1.js"/script
script

    var flag = false;
    // shift按鍵被按下的時候

    (window).keydown(function (event) {
        console.log(event.keyCode);
        if (event.keyCode === 16){
            flag = true;
        }
    });
    // shift按鍵被擡起的時候
    (window).keyup(function (event) {
        console.log(event.keyCode);
        if (event.keyCode === 16){
            flag = false;
        }
    });
    // select標籤的值發生變化的時候
    $("select").change(function (event) {
        // 若是shift按鍵被按下,就進入批量編輯模式
        // shift按鍵對應的code是16
        // 判斷當前select這一行是否被選中
        console.log($(this).parent().siblings().first().find(":checkbox"));
        var isChecked = $(this).parent().siblings().first().find(":checkbox").prop("checked");
        console.log(isChecked);
        if (flag && isChecked) {
            // 進入批量編輯模式
            // 1. 取到當前select選中的值
            var value = $(this).val();
            // 2. 給其餘被選中行的select設置成和我同樣的值
            // 2.1 找到那些被選中行的select
            var $select = $("input:checked").parent().parent().find("select")
            // 2.2 給選中的select賦值
            $select.val(value);
        }
    });
/script
/body
/html
按住shift實現批量操做

hover事件示例:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<p>蒼茫的天涯是個人哎,綿綿的青山腳下一片海!</p>

script src="jQuery-3.3.1.js"
/script
script
    $('p').hover(
        function () {
            alert('來啦,老弟')
        },
        function () {
            alert('慢走哦~')
        }
    )
/script
/body
/html
hover事件

實時監聽input輸入值變化示例:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>實時監聽input輸入值變化</title>
</head>
<body>
<input type="text" id="i1">

script src="jquery-3.2.1.min.js"/script
script
  /*

- oninput是HTML5的標準事件
- 可以檢測textarea,input:text,input:password和input:search這幾個元素的內容變化,
- 在內容修改後當即被觸發,不像onchange事件須要失去焦點才觸發
- oninput事件在IE9如下版本不支持,須要使用IE特有的onpropertychange事件替代
- 使用jQuery庫的話直接使用on同時綁定這兩個事件便可。
- */
$("#i1").on("input propertychange", function () {
alert($(this).val());
  })
/script
/body
/html
input值變化事件

事件綁定

  1. .on( events [, selector ],function(){})
  • events: 事件
  • selector: 選擇器(可選的)
  • function: 事件處理函數

移除事件

  1. .off( events [, selector ][,function(){}])

off() 方法移除用 .on()綁定的事件處理程序。

  • events: 事件
  • selector: 選擇器(可選的)
  • function: 事件處理函數

阻止後續事件執行

  1. return false// 常見阻止表單提交等
  2. e.preventDefault();
複製代碼
複製代碼
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>阻止默認事件</title>
</head>
<body>

form action=""
    button id="b1"點我/button
/form

script src="jquery-3.3.1.min.js"/script
script
    $("#b1").click(function (e) {
        alert(123);
        //return false;
        e.preventDefault();
    });
/script
/body
/html
複製代碼
複製代碼

 

注意:

像click、keydown等DOM中定義的事件,咱們均可以使用`.on()`方法來綁定事件,可是`hover`這種jQuery中定義的事件就不能用`.on()`方法來綁定了。

想使用事件委託的方式綁定hover事件處理函數,能夠參照以下代碼分兩步綁定事件:

複製代碼
複製代碼
$('ul').on('mouseenter', 'li', function() {//綁定鼠標進入事件
    $(this).addClass('hover');
});
$('ul').on('mouseleave', 'li', function() {//綁定鼠標劃出事件
    $(this).removeClass('hover');
});
複製代碼
複製代碼

阻止事件冒泡

複製代碼
複製代碼
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>阻止事件冒泡</title>
</head>
<body>
<div>
    <p>
        <span>點我</span>
    </p>
</div>
<script src="jquery-3.3.1.min.js"></script>
<script>
    $("span").click(function (e) {
        alert("span");
        e.stopPropagation();
      //阻止事件冒泡
      e.stopPropagation
}); $(
"p").click(function () { alert("p"); }); $("div").click(function () { alert("div"); }) /script /body /html
複製代碼
複製代碼

頁面載入

當DOM載入就緒能夠查詢及操縱時綁定一個要執行的函數。這是事件模塊中最重要的一個函數,由於它能夠極大地提升web應用程序的響應速度。

兩種寫法:

$(document).ready(function(){
// 在這裏寫你的JS代碼...
})

簡寫:

$(function(){
// 你在這裏寫你的代碼
})

文檔加載完綁定事件,而且阻止默認事件發生:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸註冊示例</title>
  <style>
    .error {
      color: red;
    }
  </style>
</head>
<body>

form id="myForm"
  label for="name"姓名/label
  input type="text" id="name"
  span class="error"/span
  label for="passwd"密碼/label
  input type="password" id="passwd"
  span class="error"/span
  input type="submit" id="modal-submit" value="登陸"
/form

script src="jquery-3.2.1.min.js"/script
script src="s7validate.js"/script
script
  function myValidation() {
    // 屢次用到的jQuery對象存儲到一個變量,避免重複查詢文檔樹
    var myForm = ("#myForm");
    myForm.find(":submit").on("click", function () {
      // 定義一個標誌位,記錄表單填寫是否正常
      var flag = true;
      $myForm.find(":text, :password").each(function () {
        var val = $(this).val();
        if (val.length <= 0 ){
          var labelName = $(this).prev("label").text();
          $(this).next("span").text(labelName + "不能爲空");
          flag = false;
        }
      });
      // 表單填寫有誤就會返回false,阻止submit按鈕默認的提交表單事件
      return flag;
    });
    // input輸入框獲取焦點後移除以前的錯誤提示信息
    myForm.find("input[type!='submit']").on("focus", function () {
      (this).next(".error").text("");
    })
  }
  // 文檔樹就緒後執行
  (document).ready(function () {
    myValidation();
  });
/script
/body
/html
登陸校驗示例

與window.onload的區別

  • window.onload()函數有覆蓋現象,必須等待着圖片資源加載完成以後才能調用
  • jQuery的這個入口函數沒有函數覆蓋現象,文檔加載完成以後就能夠調用(建議使用此函數)

事件委託

事件委託是經過事件冒泡的原理,利用父標籤去捕獲子標籤的事件。

示例:

表格中每一行的編輯和刪除按鈕都能觸發相應的事件。

$("table").on("click", ".delete", function () {
  // 刪除按鈕綁定的事件
})

動畫效果

複製代碼
複製代碼
// 基本
show([s,[e],[fn]])
hide([s,[e],[fn]])
toggle([s],[e],[fn])
// 滑動
slideDown([s],[e],[fn])
slideUp([s,[e],[fn]])
slideToggle([s],[e],[fn])
// 淡入淡出
fadeIn([s],[e],[fn])
fadeOut([s],[e],[fn])
fadeTo([[s],o,[e],[fn]])
fadeToggle([s,[e],[fn]])
// 自定義(瞭解便可)
animate(p,[s],[e],[fn])
複製代碼
複製代碼

自定義動畫示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>點贊動畫示例</title>
  <style>
    div {
      position: relative;
      display: inline-block;
    }
    div>i {
      display: inline-block;
      color: red;
      position: absolute;
      right: -16px;
      top: -5px;
      opacity: 1;
    }
  </style>
</head>
<body>

div id="d1"點贊/div
script src="jquery-3.2.1.min.js"/script
script
  $("#d1").on("click", function () {
    var newI = document.createElement("i");
    newI.innerText = "+1";
    $(this).append(newI);
    $(this).children("i").animate({
      opacity: 0
    }, 1000)
  })
/script
/body
/html
點贊特效簡單示例

補充

each

jQuery.each(collection, callback(indexInArray, valueOfElement)):

描述:一個通用的迭代函數,它能夠用來無縫迭代對象和數組。數組和相似數組的對象經過一個長度屬性(如一個函數的參數對象)來迭代數字索引,從0到length - 1。其餘對象經過其屬性名進行迭代。

li =[10,20,30,40]
$.each(li,function(i, v){
  console.log(i, v);//index是索引,ele是每次循環的具體元素。
})

輸出:

010
120
230
340

.each(function(index, Element)):

描述:遍歷一個jQuery對象,爲每一個匹配元素執行一個函數。

.each() 方法用來迭代jQuery對象中的每個DOM元素。每次回調函數執行時,會傳遞當前循環次數做爲參數(從0開始計數)。因爲回調函數是在當前DOM元素爲上下文的語境中觸發的,因此關鍵字 this 老是指向這個元素。

// 爲每個li標籤添加foo
$("li").each(function(){
  $(this).addClass("c1");
});

注意: jQuery的方法返回一個jQuery對象,遍歷jQuery集合中的元素 - 被稱爲隱式迭代的過程。當這種狀況發生時,它一般不須要顯式地循環的 .each()方法:

也就是說,上面的例子沒有必要使用each()方法,直接像下面這樣寫就能夠了:

$("li").addClass("c1");  // 對全部標籤作統一操做

注意:

在遍歷過程當中可使用 return false提早結束each循環。

終止each循環

return false

伏筆...

.data()

在匹配的元素集合中的全部元素上存儲任意相關數據或返回匹配的元素集合中的第一個元素的給定名稱的數據存儲的值。

.data(key, value):

描述:在匹配的元素上存儲任意相關數據。

$("div").data("k",100);//給全部div標籤都保存一個名爲k,值爲100

.data(key):

描述: 返回匹配的元素集合中的第一個元素的給定名稱的數據存儲的值—經過 .data(name, value)HTML5 data-*屬性設置。

$("div").data("k");//返回第一個div標籤中保存的"k"的值

.removeData(key):

描述:移除存放在元素上的數據,不加key參數表示移除全部保存的數據。

$("div").removeData("k");  //移除元素上存放k對應的數據

示例:

模態框編輯的數據回填表格

插件(瞭解便可)

jQuery.extend(object)

jQuery的命名空間下添加新的功能。多用於插件開發者向 jQuery 中添加新函數時使用。

示例:

複製代碼
複製代碼
<script>
jQuery.extend({
  min:function(a, b){return a < b ? a : b;},
  max:function(a, b){return a > b ? a : b;}
});
jQuery.min(2,3);// => 2
jQuery.max(4,5);// => 5
</script>
複製代碼
複製代碼

jQuery.fn.extend(object)

一個對象的內容合併到jQuery的原型,以提供新的jQuery實例方法。

複製代碼
複製代碼
<script>
  jQuery.fn.extend({
    check:function(){
      return this.each(function(){this.checked =true;});
    },
    uncheck:function(){
      return this.each(function(){this.checked =false;});
    }
  });
// jQuery對象可使用新添加的check()方法了。
$("input[type='checkbox']").check();
</script>
複製代碼
複製代碼

單獨寫在文件中的擴展:

複製代碼
複製代碼
(function(jq){
  jq.extend({
    funcName:function(){
    ...
    },
  });
})(jQuery);
複製代碼
複製代碼

例子:

自定義的jQuery登陸驗證插件

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸校驗示例</title>
  <style>
    .login-form {
      margin: 100px auto 0;
      max-width: 330px;
    }
    .login-form > div {
      margin: 15px 0;
    }
    .error {
      color: red;
    }
  </style>
</head>
<body>



div
  form action="" class="login-form" novalidate

    <div>
      <label for="username">姓名</label>
      <input id="username" type="text" name="name" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="passwd">密碼</label>
      <input id="passwd" type="password" name="password" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="mobile">手機</label>
      <input id="mobile" type="text" name="mobile" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="where">來自</label>
      <input id="where" type="text" name="where" autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <input type="submit" value="登陸">
    </div>
    

  /form
/div

script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script src="validate.js"/script
script
  $.validate();
/script
/body
/html
HTML文件
"use strict";
(function ($) {
  function check() {
    // 定義一個標誌位,表示驗證經過仍是驗證不經過
    var flag = true;
    var errMsg;
    // 校驗規則
    $("form input[type!=':submit']").each(function () {
      var labelName = $(this).prev().text();
      var inputName = $(this).attr("name");
      var inputValue = $(this).val();
      if ($(this).attr("required")) {
        // 若是是必填項
        if (inputValue.length === 0) {
          // 值爲空
          errMsg = labelName + "不能爲空";
          $(this).next().text(errMsg);
          flag = false;
          return false;
        }
        // 若是是密碼類型,咱們就要判斷密碼的長度是否大於6位
        if (inputName === "password") {
          // 除了上面判斷爲不爲空還要判斷密碼長度是否大於6位
          if (inputValue.length < 6) {
            errMsg = labelName + "必須大於6位";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
        // 若是是手機類型,咱們須要判斷手機的格式是否正確
        if (inputName === "mobile") {
          // 使用正則表達式校驗inputValue是否爲正確的手機號碼
          if (!/^1[345678]\d{9}$/.test(inputValue)) {
            // 不是有效的手機號碼格式
            errMsg = labelName + "格式不正確";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
      }
    });
    return flag;
  }

  function clearError(arg) {
    // 清空以前的錯誤提示
    (arg).next().text("");
  }
  // 上面都是我定義的工具函數
  .extend({
    validate: function () {
      ("form :submit").on("click", function () {
      return check();
    });
    ("form :input[type!='submit']").on("focus", function () {
      clearError(this);
    });
    }
  });
})(jQuery);
JS文件

 傳參版插件:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸校驗示例</title>
  <style>
    .login-form {
      margin: 100px auto 0;
      max-width: 330px;
    }
    .login-form > div {
      margin: 15px 0;
    }
    .error {
      color: red;
    }
  </style>
</head>
<body>



div
  form action="" class="login-form" novalidate

    <div>
      <label for="username">姓名</label>
      <input id="username" type="text" name="name" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="passwd">密碼</label>
      <input id="passwd" type="password" name="password" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="mobile">手機</label>
      <input id="mobile" type="text" name="mobile" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="where">來自</label>
      <input id="where" type="text" name="where" autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <input type="submit" value="登陸">
    </div>
    

  /form
/div

script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script src="validate3.js"/script
script
  $.validate({"name":{"required": true}, "password": {"required": true, "minLength": 8}, "mobile": {"required": true}});
/script
/body
/html
HTML文件
"use strict";
(function ($) {
  function check(arg) {
    // 定義一個標誌位,表示驗證經過仍是驗證不經過
    var flag = true;
    var errMsg;
    // 校驗規則
    $("form input[type!=':submit']").each(function () {
      var labelName = $(this).prev().text();
      var inputName = $(this).attr("name");
      var inputValue = $(this).val();
      if (arg[inputName].required) {
        // 若是是必填項
        if (inputValue.length === 0) {
          // 值爲空
          errMsg = labelName + "不能爲空";
          $(this).next().text(errMsg);
          flag = false;
          return false;
        }
        // 若是是密碼類型,咱們就要判斷密碼的長度是否大於6位
        if (inputName === "password") {
          // 除了上面判斷爲不爲空還要判斷密碼長度是否大於6位
          if (inputValue.length < arg[inputName].minLength) {
            errMsg = labelName + "必須大於"+arg[inputName].minLength+"位";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
        // 若是是手機類型,咱們須要判斷手機的格式是否正確
        if (inputName === "mobile") {
          // 使用正則表達式校驗inputValue是否爲正確的手機號碼
          if (!/^1[345678]\d{9}$/.test(inputValue)) {
            // 不是有效的手機號碼格式
            errMsg = labelName + "格式不正確";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
      }
    });
    return flag;
  }

  function clearError(arg) {
    // 清空以前的錯誤提示
    (arg).next().text("");
  }
  // 上面都是我定義的工具函數
  .extend({
    validate: function (arg) {
      ("form :submit").on("click", function () {
      return check(arg);
    });
    ("form :input[type!='submit']").on("focus", function () {
      clearError(

jQuery

jQuery介紹

  1. jQuery是一個輕量級的、兼容多瀏覽器的JavaScript庫。
  2. jQuery使用戶可以更方便地處理HTML Document、Events、實現動畫效果、方便地進行Ajax交互,可以極大地簡化JavaScript編程。它的宗旨就是:「Write less, do more.「

jQuery的優點

  1. 一款輕量級的JS框架。jQuery核心js文件才幾十kb,不會影響頁面加載速度。
  2. 豐富的DOM選擇器,jQuery的選擇器用起來很方便,好比要找到某個DOM對象的相鄰元素,JS可能要寫好幾行代碼,而jQuery一行代碼就搞定了,再好比要將一個表格的隔行變色,jQuery也是一行代碼搞定。
  3. 鏈式表達式。jQuery的鏈式操做能夠把多個操做寫在一行代碼裏,更加簡潔。
  4. 事件、樣式、動畫支持。jQuery還簡化了js操做css的代碼,而且代碼的可讀性也比js要強。
  5. Ajax操做支持。jQuery簡化了AJAX操做,後端只需返回一個JSON格式的字符串就能完成與前端的通訊。
  6. 跨瀏覽器兼容。jQuery基本兼容瞭如今主流的瀏覽器,不用再爲瀏覽器的兼容問題而傷透腦筋。
  7. 插件擴展開發。jQuery有着豐富的第三方的插件,例如:樹形菜單、日期控件、圖片切換插件、彈出窗口等等基本前端頁面上的組件都有對應插件,而且用jQuery插件作出來的效果很炫,而且能夠根據本身須要去改寫和封裝插件,簡單實用。

jQuery內容:

  1. 選擇器
  2. 篩選器
  3. 樣式操做
  4. 文本操做
  5. 屬性操做
  6. 文檔處理
  7. 事件
  8. 動畫效果
  9. 插件
  10. each、data、Ajax

下載連接:jQuery官網

中文文檔:jQuery AP中文文檔

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,只支持最新的瀏覽器。須要注意的是不少老的jQuery插件不支持3.x版。目前該版本是官方主要更新維護的版本。

維護IE678是一件讓人頭疼的事情,通常咱們都會額外加載一個CSS和JS單獨處理。值得慶幸的是使用這些瀏覽器的人也逐步減小,PC端用戶已經逐步被移動端用戶所取代,若是沒有特殊要求的話,通常都會選擇放棄對678的支持。

jQuery對象

jQuery對象就是經過jQuery包裝DOM對象後產生的對象。jQuery對象是 jQuery獨有的。若是一個對象是 jQuery對象,那麼它就可使用jQuery裏的方法:例如$(「#i1」).html()。

$("#i1").html()的意思是:獲取id值爲 i1的元素的html代碼。其中 html()是jQuery裏的方法。

至關於: document.getElementById("i1").innerHTML;

雖然 jQuery對象是包裝 DOM對象後產生的,可是 jQuery對象沒法使用 DOM對象的任何方法,同理 DOM對象也沒不能使用 jQuery裏的方法。

一個約定,咱們在聲明一個jQuery對象變量的時候在變量名前面加上$:

var $variable = jQuery對像
var variable = DOM對象
$variable[0]//jQuery對象轉成DOM對象

拿上面那個例子舉例,jQuery對象和DOM對象的使用:

$("#i1").html();//jQuery對象可使用jQuery的方法
$("#i1")[0].innerHTML;// DOM對象使用DOM的方法

jQuery基礎語法

$(selector).action()

查找標籤

基本選擇器

id選擇器:

$("#id")

標籤選擇器:

$("tagName")

class選擇器:

$(".className")

配合使用:

$("div.c1")  // 找到有c1 class類的div標籤

全部元素選擇器:

$("*")

組合選擇器:

$("#id, .className, tagName")

層級選擇器:

x和y能夠爲任意選擇器

$("x y");// x的全部後代y(子子孫孫)
$("x > y");// x的全部兒子y(兒子)
$("x + y")// 找到全部緊挨在x後面的y
$("x ~ y")// x以後全部的兄弟y

基本篩選器:

複製代碼
:first // 第一個
:last // 最後一個
:eq(index)// 索引等於index的那個元素
:even // 匹配全部索引值爲偶數的元素,從 0 開始計數
:odd // 匹配全部索引值爲奇數的元素,從 0 開始計數
:gt(index)// 匹配全部大於給定索引值的元素
:lt(index)// 匹配全部小於給定索引值的元素
:not(元素選擇器)// 移除全部知足not條件的標籤
:has(元素選擇器)// 選取全部包含一個或多個標籤在其內的標籤(指的是從後代元素找)
複製代碼

例子:

$("div:has(h1)")// 找到全部後代中有h1標籤的div標籤
$("div:has(.c1)")// 找到全部後代中有c1樣式類的div標籤
$("li:not(.c1)")// 找到全部不包含c1樣式類的li標籤
$("li:not(:has(a))")// 找到全部後代中不含a標籤的li標籤

練習:

自定義模態框,使用jQuery實現彈出和隱藏功能。

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>自定義模態框</title>
  <style>
    .cover {
      position: fixed;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: darkgrey;
      z-index: 999;
    }
    .modal {
      width: 600px;
      height: 400px;
      background-color: white;
      position: fixed;
      left: 50%;
      top: 50%;
      margin-left: -300px;
      margin-top: -200px;
      z-index: 1000;
    }
    .hide {
      display: none;
    }
  </style>
</head>
<body>
<input type="button" value="彈" id="i0">

div class="cover hide"/div
div class="modal hide"
  label for="i1"姓名/label
  input id="i1" type="text"
   label for="i2"愛好/label
  input id="i2" type="text"
  input type="button" id="i3" value="關閉"
/div
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script
  var tButton = $("#i0")[0];
  tButton.onclick=function () {
    var coverEle = $(".cover")[0];
    var modalEle = $(".modal")[0]; $(coverEle).removeClass("hide"); $(modalEle).removeClass("hide"); }; var cButton = $("#i3")[0];
  cButton.onclick=function () {
    var coverEle = $(".cover")[0];
    var modalEle = $(".modal")[0]; $(coverEle).addClass("hide"); $(modalEle).addClass("hide"); } /script
/body
/html
jQuery版自定義模態框

屬性選擇器:

[attribute]
[attribute=value]// 屬性等於
[attribute!=value]// 屬性不等於

例子:

複製代碼
// 示例
<input type="text">
<input type="password">
<input type="checkbox">
$("input[type='checkbox']");// 取到checkbox類型的input標籤
$("input[type!='text']");// 取到類型不是text的input標籤
複製代碼

表單篩選器

複製代碼
:text
:password
:file
:radio
:checkbox
:submit :reset :button
複製代碼

例子:

$(":checkbox")  // 找到全部的checkbox

表單對象屬性:

:enabled
:disabled
:checked
:selected

例子:

找到可用的input標籤

複製代碼
<form>
  <input name="email" disabled="disabled" />
  <input name="id" />
</form>

$("input:enabled")  // 找到可用的input標籤
複製代碼

 找到被選中的option:

複製代碼
<select id="s1">
  <option value="beijing">北京市</option>
  <option value="shanghai">上海市</option>
  <option selected value="guangzhou">廣州市</option>
  <option value="shenzhen">深圳市</option>
</select>

$(":selected")  // 找到全部被選中的option
複製代碼

篩選器方法

下一個元素:

$("#id").next()
$("#id").nextAll()
$("#id").nextUntil("#i2")

上一個元素:

$("#id").prev()
$("#id").prevAll()
$("#id").prevUntil("#i2")

父親元素:

$("#id").parent()
$("#id").parents()  // 查找當前元素的全部的父輩元素
$("#id").parentsUntil() // 查找當前元素的全部的父輩元素,直到遇到匹配的那個元素爲止。

兒子和兄弟元素:

$("#id").children();// 兒子們
$("#id").siblings();// 兄弟們

查找

搜索全部與指定表達式匹配的元素。這個函數是找出正在處理的元素的後代元素的好方法。

$("div").find("p")

等價於$("div p")

篩選

篩選出與指定表達式匹配的元素集合。這個方法用於縮小匹配的範圍。用逗號分隔多個表達式。

$("div").filter(".c1")  // 從結果集中過濾出有c1樣式類的

等價於 $("div.c1")

補充:

.first() // 獲取匹配的第一個元素
.last() // 獲取匹配的最後一個元素
.not() // 從匹配元素的集合中刪除與指定表達式匹配的元素
.has() // 保留包含特定後代的元素,去掉那些不含有指定後代的元素。
.eq() // 索引值等於指定值的元素

示例:左側菜單

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>左側菜單示例</title>
  <style>
    .left {
      position: fixed;
      left: 0;
      top: 0;
      width: 20%;
      height: 100%;
      background-color: rgb(47, 53, 61);
    }

    .right {
      width: 80%;
      height: 100%;
    }
    
    .menu {
      color: white;
    }
    
    .title {
      text-align: center;
      padding: 10px 15px;
      border-bottom: 1px solid #23282e;
    }
    
    .items {
      background-color: #181c20;
    
    }
    .item {
      padding: 5px 10px;
      border-bottom: 1px solid #23282e;
    }
    
    .hide {
      display: none;
    }
    

  /style
/head
body

div class="left"
  div class="menu"
    div class="title"菜單一/div
    div class="items"
      div class="item"111/div
      div class="item"222/div
      div class="item"333/div
    /div
    div class="title"菜單二/div
    div class="items hide"
      div class="item"111/div
      div class="item"222/div
      div class="item"333/div
    /div
    div class="title"菜單三/div
    div class="items hide"
      div class="item"111/div
      div class="item"222/div
      div class="item"333/div
    /div
  /div
/div
div class="right"/div
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script

script
  $(".title").click(function (){  // jQuery綁定事件
    // 隱藏全部class裏有.items的標籤
    $(".items").addClass("hide");  //批量操做
    $(this).next().removeClass("hide");
  });
/script
左側菜單示例

操做標籤

樣式操做

樣式類

addClass();// 添加指定的CSS類名。
removeClass();// 移除指定的CSS類名。
hasClass();// 判斷樣式存不存在
toggleClass();// 切換CSS類名,若是有就移除,若是沒有就添加。

示例:開關燈和模態框

CSS

css("color","red")//DOM操做:tag.style.color="red"

示例:

$("p").css("color", "red"); //將全部p標籤的字體設置爲紅色

位置操做

offset()// 獲取匹配元素在當前窗口的相對偏移或設置元素位置
position()// 獲取匹配元素相對父元素的偏移
scrollTop()// 獲取匹配元素相對滾動條頂部的偏移
scrollLeft()// 獲取匹配元素相對滾動條左側的偏移

.offset()方法容許咱們檢索一個元素相對於文檔(document)的當前位置。

.position()的差異在於: .position()是相對於相對於父級元素的位移。

示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>位置相關示例之返回頂部</title>
  <style>
    .c1 {
      width: 100px;
      height: 200px;
      background-color: red;
    }

    .c2 {
      height: 50px;
      width: 50px;
    
      position: fixed;
      bottom: 15px;
      right: 15px;
      background-color: #2b669a;
    }
    .hide {
      display: none;
    }
    .c3 {
      height: 100px;
    }
    

  /style
/head
body
button id="b1" class="btn btn-default"點我/button
div class="c1"/div
div class="c3"1/div
div class="c3"2/div
div class="c3"3/div
div class="c3"4/div
div class="c3"5/div
div class="c3"6/div
div class="c3"7/div
div class="c3"8/div
div class="c3"9/div
div class="c3"10/div
div class="c3"11/div
div class="c3"12/div
div class="c3"13/div
div class="c3"14/div
div class="c3"15/div
div class="c3"16/div
div class="c3"17/div
div class="c3"18/div
div class="c3"19/div
div class="c3"20/div
div class="c3"21/div
div class="c3"22/div
div class="c3"23/div
div class="c3"24/div
div class="c3"25/div
div class="c3"26/div
div class="c3"27/div
div class="c3"28/div
div class="c3"29/div
div class="c3"30/div
div class="c3"31/div
div class="c3"32/div
div class="c3"33/div
div class="c3"34/div
div class="c3"35/div
div class="c3"36/div
div class="c3"37/div
div class="c3"38/div
div class="c3"39/div
div class="c3"40/div
div class="c3"41/div
div class="c3"42/div
div class="c3"43/div
div class="c3"44/div
div class="c3"45/div
div class="c3"46/div
div class="c3"47/div
div class="c3"48/div
div class="c3"49/div
div class="c3"50/div
div class="c3"51/div
div class="c3"52/div
div class="c3"53/div
div class="c3"54/div
div class="c3"55/div
div class="c3"56/div
div class="c3"57/div
div class="c3"58/div
div class="c3"59/div
div class="c3"60/div
div class="c3"61/div
div class="c3"62/div
div class="c3"63/div
div class="c3"64/div
div class="c3"65/div
div class="c3"66/div
div class="c3"67/div
div class="c3"68/div
div class="c3"69/div
div class="c3"70/div
div class="c3"71/div
div class="c3"72/div
div class="c3"73/div
div class="c3"74/div
div class="c3"75/div
div class="c3"76/div
div class="c3"77/div
div class="c3"78/div
div class="c3"79/div
div class="c3"80/div
div class="c3"81/div
div class="c3"82/div
div class="c3"83/div
div class="c3"84/div
div class="c3"85/div
div class="c3"86/div
div class="c3"87/div
div class="c3"88/div
div class="c3"89/div
div class="c3"90/div
div class="c3"91/div
div class="c3"92/div
div class="c3"93/div
div class="c3"94/div
div class="c3"95/div
div class="c3"96/div
div class="c3"97/div
div class="c3"98/div
div class="c3"99/div
div class="c3"100/div

button id="b2" class="btn btn-default c2 hide"返回頂部/button
script src="jquery-3.2.1.min.js"/script
script
  $("#b1").on("click", function () {
    $(".c1").offset({left: 200, top:200}); }); (window).scroll(function () { if ($(window).scrollTop() > 100) { $("#b2").removeClass("hide"); }else { $("#b2").addClass("hide"); } }); ("#b2").on("click", function () {
    $(window).scrollTop(0);
  })
/script
/body
/html
返回頂部示例

尺寸:

複製代碼
height()
width()
innerHeight()
innerWidth()
outerHeight()
outerWidth()
複製代碼

文本操做

HTML代碼:

html()// 取得第一個匹配元素的html內容
html(val)// 設置全部匹配元素的html內容

文本值:

text()// 取得全部匹配元素的內容
text(val)// 設置全部匹配元素的內容

值:

val()// 取得第一個匹配元素的當前值
val(val)// 設置全部匹配元素的值
val([val1, val2])// 設置多選的checkbox、多選select的值

例如:

複製代碼
<input type="checkbox" value="basketball" name="hobby">籃球
<input type="checkbox" value="football" name="hobby">足球

select multiple id="s1"
    option value="1"1/option
    option value="2"2/option
    option value="3"3/option
/select
複製代碼

設置值:

$("[name='hobby']").val(['basketball', 'football']);
$("#s1").val(["1", "2"])

示例:

獲取被選中的checkbox或radio的值:

<label for="c1">女</label>
<input name="gender" id="c1" type="radio" value="0">
<label for="c2">男</label>
<input name="gender" id="c2" type="radio" value="1">

可使用:

$("input[name='gender']:checked").val()
<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>文本操做之登陸驗證</title>
  <style>
    .error {
      color: red;
    }
  </style>
</head>
<body>

form action=""
  div
    label for="input-name"用戶名/label
    input type="text" id="input-name" name="name"
    span class="error"/span
  /div
  div
    label for="input-password"密碼/label
    input type="password" id="input-password" name="password"
    span class="error"/span
  /div
  div
    input type="button" id="btn" value="提交"
  /div
/form
script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script
  $("#btn").click(function () {
    var username = $("#input-name").val();
    var password = $("#input-password").val(); if (username.length === 0) { $("#input-name").siblings(".error").text("用戶名不能爲空"); } if (password.length === 0) { $("#input-password").siblings(".error").text("密碼不能爲空"); } }) /script
/body
/html
自定義登陸校驗示例

屬性操做

用於ID等或自定義屬性:

attr(attrName)// 返回第一個匹配元素的屬性值
attr(attrName, attrValue)// 爲全部匹配元素設置一個屬性值
attr({k1: v1, k2:v2})// 爲全部匹配元素設置多個屬性值
removeAttr()// 從每個匹配的元素中刪除一個屬性

用於checkbox和radio

prop() // 獲取屬性
removeProp() // 移除屬性

注意:

在1.x及2.x版本的jQuery中使用attr對checkbox進行賦值操做時會出bug,在3.x版本的jQuery中則沒有這個問題。爲了兼容性,咱們在處理checkbox和radio的時候儘可能使用特定的prop(),不要使用attr("checked", "checked")。

複製代碼
<input type="checkbox" value="1">
<input type="radio" value="2">
<script>
  $(":checkbox[value='1']").prop("checked", true);
  $(":radio[value='2']").prop("checked", true);
</script>
複製代碼

prop和attr的區別:

attr全稱attribute(屬性) 

prop全稱property(屬性)

雖然都是屬性,但他們所指的屬性並不相同,attr所指的屬性是HTML標籤屬性,而prop所指的是DOM對象屬性,能夠認爲attr是顯式的,而prop是隱式的。

舉個例子:

<input type="checkbox" id="i1" value="1">

針對上面的代碼,

$("#i1").attr("checked")  // undefined
$("#i1").prop("checked")  // false

能夠看到attr獲取一個標籤內沒有的東西會獲得undefined,而prop獲取的是這個DOM對象的屬性,所以checked爲false。

若是換成下面的代碼:

<input type="checkbox" checked id="i1" value="1">

再執行:

$("#i1").attr("checked")   // checked
$("#i1").prop("checked")  // true

這已經能夠證實attr的侷限性,它的做用範圍只限於HTML標籤內的屬性,而prop獲取的是這個DOM對象的屬性,選中返回true,沒選中返回false。

接下來再看一下針對自定義屬性,attr和prop又有什麼區別:

<input type="checkbox" checked id="i1" value="1" me="自定義屬性">

執行如下代碼:

$("#i1").attr("me")   // "自定義屬性"
$("#i1").prop("me")  // undefined

能夠看到prop不支持獲取標籤的自定義屬性。

總結一下:

  1. 對於標籤上有的能看到的屬性和自定義屬性都用attr
  2. 對於返回布爾值的好比checkbox、radio和option的是否被選中都用prop。

 

練習題:全選、反選、取消

文檔處理

添加到指定元素內部的後面

$(A).append(B)// 把B追加到A
$(A).appendTo(B)// 把A追加到B

添加到指定元素內部的前面

$(A).prepend(B)// 把B前置到A
$(A).prependTo(B)// 把A前置到B

添加到指定元素外部的後面

$(A).after(B)// 把B放到A的後面
$(A).insertAfter(B)// 把A放到B的後面

添加到指定元素外部的前面

$(A).before(B)// 把B放到A的前面
$(A).insertBefore(B)// 把A放到B的前面

移除和清空元素

remove()// 從DOM中刪除全部匹配的元素。
empty()// 刪除匹配的元素集合中全部的子節點。

例子:

點擊按鈕在表格添加一行數據。

點擊每一行的刪除按鈕刪除當前行數據。

替換

replaceWith()
replaceAll()

克隆

clone()// 參數

克隆示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>克隆</title>
  <style>
    #b1 {
      background-color: deeppink;
      padding: 5px;
      color: white;
      margin: 5px;
    }
    #b2 {
      background-color: dodgerblue;
      padding: 5px;
      color: white;
      margin: 5px;
    }
  </style>
</head>
<body>

button id="b1"屠龍寶刀,點擊就送/button
hr
button id="b2"屠龍寶刀,點擊就送/button

script src="jquery-3.2.1.min.js"/script
script
  // clone方法不加參數true,克隆標籤但不克隆標籤帶的事件
  ("#b1").on("click", function () {
    $(this).clone().insertAfter(this);
  });
  // clone方法加參數true,克隆標籤而且克隆標籤帶的事件
  ("#b2").on("click", function () {
    $(this).clone(true).insertAfter(this);
  });
/script
/body
/html
點擊複製按鈕

事件

經常使用事件

複製代碼
click(function(){...})
hover(function(){...})
blur(function(){...})
focus(function(){...})
change(function(){...})
keyup(function(){...})
複製代碼

keydown和keyup事件組合示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta http-equiv="content-Type" charset="UTF-8">
    <meta http-equiv="x-ua-compatible" content="IE=edge">
    <title>Title</title>
</head>
<body>



table border="1"
  thead
  tr
    th#/th
    th姓名/th
    th操做/th
  /tr
  /thead
  tbody
  tr
    tdinput type="checkbox"/td
    tdEgon/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdAlex/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdYuan/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdEvaJ/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  tr
    tdinput type="checkbox"/td
    tdGold/td
    td
      select
        option value="1"上線/option
        option value="2"下線/option
        option value="3"停職/option
      /select
    /td
  /tr
  /tbody
/table

input type="button" id="b1" value="全選"
input type="button" id="b2" value="取消"
input type="button" id="b3" value="反選"

script src="jquery-3.3.1.js"/script
script

    var flag = false;
    // shift按鍵被按下的時候
    

    (window).keydown(function (event) {
        console.log(event.keyCode);
        if (event.keyCode === 16){
            flag = true;
        }
    });
    // shift按鍵被擡起的時候
    (window).keyup(function (event) {
        console.log(event.keyCode);
        if (event.keyCode === 16){
            flag = false;
        }
    });
    // select標籤的值發生變化的時候
    $("select").change(function (event) {
        // 若是shift按鍵被按下,就進入批量編輯模式
        // shift按鍵對應的code是16
        // 判斷當前select這一行是否被選中
        console.log($(this).parent().siblings().first().find(":checkbox"));
        var isChecked = $(this).parent().siblings().first().find(":checkbox").prop("checked");
        console.log(isChecked);
        if (flag && isChecked) {
            // 進入批量編輯模式
            // 1. 取到當前select選中的值
            var value = $(this).val();
            // 2. 給其餘被選中行的select設置成和我同樣的值
            // 2.1 找到那些被選中行的select
            var $select = $("input:checked").parent().parent().find("select")
            // 2.2 給選中的select賦值
            $select.val(value);
        }
    });
/script
/body
/html
按住shift實現批量操做

hover事件示例:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>hover示例</title>
  <style>
    * {
      margin: 0;
      padding: 0;
    }
    .nav {
      height: 40px;
      width: 100%;
      background-color: #3d3d3d;
      position: fixed;
      top: 0;
    }

    .nav ul {
      list-style-type: none;
      line-height: 40px;
    }
    
    .nav li {
      float: left;
      padding: 0 10px;
      color: #999999;
      position: relative;
    }
    .nav li:hover {
      background-color: #0f0f0f;
      color: white;
    }
    
    .clearfix:after {
      content: "";
      display: block;
      clear: both;
    }
    
    .son {
      position: absolute;
      top: 40px;
      right: 0;
      height: 50px;
      width: 100px;
      background-color: #00a9ff;
      display: none;
    }
    
    .hover .son {
      display: block;
    }
    

  /style
/head
body
div class="nav"
  ul class="clearfix"
    li登陸/li
    li註冊/li
    li購物車
      p class="son hide"
        空空如也...
      /p
    /li
  /ul
/div
script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"/script
script
$(".nav li").hover(
  function () {
    $(this).addClass("hover");
  },
  function () {
    $(this).removeClass("hover");
  }
);
/script
/body
/html
hover事件

實時監聽input輸入值變化示例:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>實時監聽input輸入值變化</title>
</head>
<body>
<input type="text" id="i1">

script src="jquery-3.2.1.min.js"/script
script
  /*

- oninput是HTML5的標準事件
- 可以檢測textarea,input:text,input:password和input:search這幾個元素的內容變化,
- 在內容修改後當即被觸發,不像onchange事件須要失去焦點才觸發
- oninput事件在IE9如下版本不支持,須要使用IE特有的onpropertychange事件替代
- 使用jQuery庫的話直接使用on同時綁定這兩個事件便可。
- */
$("#i1").on("input propertychange", function () {
alert($(this).val());
  })
/script
/body
/html
input值變化事件

事件綁定

  1. .on( events [, selector ],function(){})
  • events: 事件
  • selector: 選擇器(可選的)
  • function: 事件處理函數

移除事件

  1. .off( events [, selector ][,function(){}])

off() 方法移除用 .on()綁定的事件處理程序。

  • events: 事件
  • selector: 選擇器(可選的)
  • function: 事件處理函數

阻止後續事件執行

  1. return false// 常見阻止表單提交等
  2. e.preventDefault();
複製代碼
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>阻止默認事件</title>
</head>
<body>

form action=""
    button id="b1"點我/button
/form

script src="jquery-3.3.1.min.js"/script
script
    $("#b1").click(function (e) {
        alert(123);
        //return false;
        e.preventDefault();
    });
/script
/body
/html
複製代碼

 

注意:

像click、keydown等DOM中定義的事件,咱們均可以使用`.on()`方法來綁定事件,可是`hover`這種jQuery中定義的事件就不能用`.on()`方法來綁定了。

想使用事件委託的方式綁定hover事件處理函數,能夠參照以下代碼分兩步綁定事件:

複製代碼
$('ul').on('mouseenter', 'li', function() {//綁定鼠標進入事件
    $(this).addClass('hover');
});
$('ul').on('mouseleave', 'li', function() {//綁定鼠標劃出事件
    $(this).removeClass('hover');
});
複製代碼

阻止事件冒泡

複製代碼
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>阻止事件冒泡</title>
</head>
<body>
<div>
    <p>
        <span>點我</span>
    </p>
</div>
<script src="jquery-3.3.1.min.js"></script>
<script>
    $("span").click(function (e) {
        alert("span");
        e.stopPropagation();
    });

    $("p").click(function () {
        alert("p");
    });
    $("div").click(function () {
        alert("div");
    })
    

/script
/body
/html
複製代碼

頁面載入

當DOM載入就緒能夠查詢及操縱時綁定一個要執行的函數。這是事件模塊中最重要的一個函數,由於它能夠極大地提升web應用程序的響應速度。

兩種寫法:

$(document).ready(function(){
// 在這裏寫你的JS代碼...
})

簡寫:

$(function(){
// 你在這裏寫你的代碼
})

文檔加載完綁定事件,而且阻止默認事件發生:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸註冊示例</title>
  <style>
    .error {
      color: red;
    }
  </style>
</head>
<body>

form id="myForm"
  label for="name"姓名/label
  input type="text" id="name"
  span class="error"/span
  label for="passwd"密碼/label
  input type="password" id="passwd"
  span class="error"/span
  input type="submit" id="modal-submit" value="登陸"
/form

script src="jquery-3.2.1.min.js"/script
script src="s7validate.js"/script
script
  function myValidation() {
    // 屢次用到的jQuery對象存儲到一個變量,避免重複查詢文檔樹
    var myForm = ("#myForm");
    myForm.find(":submit").on("click", function () {
      // 定義一個標誌位,記錄表單填寫是否正常
      var flag = true;
      $myForm.find(":text, :password").each(function () {
        var val = $(this).val();
        if (val.length <= 0 ){
          var labelName = $(this).prev("label").text();
          $(this).next("span").text(labelName + "不能爲空");
          flag = false;
        }
      });
      // 表單填寫有誤就會返回false,阻止submit按鈕默認的提交表單事件
      return flag;
    });
    // input輸入框獲取焦點後移除以前的錯誤提示信息
    myForm.find("input[type!='submit']").on("focus", function () {
      (this).next(".error").text("");
    })
  }
  // 文檔樹就緒後執行
  (document).ready(function () {
    myValidation();
  });
/script
/body
/html
登陸校驗示例

與window.onload的區別

  • window.onload()函數有覆蓋現象,必須等待着圖片資源加載完成以後才能調用
  • jQuery的這個入口函數沒有函數覆蓋現象,文檔加載完成以後就能夠調用(建議使用此函數)

事件委託

事件委託是經過事件冒泡的原理,利用父標籤去捕獲子標籤的事件。

示例:

表格中每一行的編輯和刪除按鈕都能觸發相應的事件。

$("table").on("click", ".delete", function () {
  // 刪除按鈕綁定的事件
})

動畫效果

複製代碼
// 基本
show([s,[e],[fn]])
hide([s,[e],[fn]])
toggle([s],[e],[fn])
// 滑動
slideDown([s],[e],[fn])
slideUp([s,[e],[fn]])
slideToggle([s],[e],[fn])
// 淡入淡出
fadeIn([s],[e],[fn])
fadeOut([s],[e],[fn])
fadeTo([[s],o,[e],[fn]])
fadeToggle([s,[e],[fn]])
// 自定義(瞭解便可)
animate(p,[s],[e],[fn])
複製代碼

自定義動畫示例:

<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>點贊動畫示例</title>
  <style>
    div {
      position: relative;
      display: inline-block;
    }
    div>i {
      display: inline-block;
      color: red;
      position: absolute;
      right: -16px;
      top: -5px;
      opacity: 1;
    }
  </style>
</head>
<body>

div id="d1"點贊/div
script src="jquery-3.2.1.min.js"/script
script
  $("#d1").on("click", function () {
    var newI = document.createElement("i");
    newI.innerText = "+1";
    $(this).append(newI);
    $(this).children("i").animate({
      opacity: 0
    }, 1000)
  })
/script
/body
/html
點贊特效簡單示例

補充

each

jQuery.each(collection, callback(indexInArray, valueOfElement)):

描述:一個通用的迭代函數,它能夠用來無縫迭代對象和數組。數組和相似數組的對象經過一個長度屬性(如一個函數的參數對象)來迭代數字索引,從0到length - 1。其餘對象經過其屬性名進行迭代。

li =[10,20,30,40]
$.each(li,function(i, v){
  console.log(i, v);//index是索引,ele是每次循環的具體元素。
})

輸出:

010
120
230
340

.each(function(index, Element)):

描述:遍歷一個jQuery對象,爲每一個匹配元素執行一個函數。

.each() 方法用來迭代jQuery對象中的每個DOM元素。每次回調函數執行時,會傳遞當前循環次數做爲參數(從0開始計數)。因爲回調函數是在當前DOM元素爲上下文的語境中觸發的,因此關鍵字 this 老是指向這個元素。

// 爲每個li標籤添加foo
$("li").each(function(){
  $(this).addClass("c1");
});

注意: jQuery的方法返回一個jQuery對象,遍歷jQuery集合中的元素 - 被稱爲隱式迭代的過程。當這種狀況發生時,它一般不須要顯式地循環的 .each()方法:

也就是說,上面的例子沒有必要使用each()方法,直接像下面這樣寫就能夠了:

$("li").addClass("c1");  // 對全部標籤作統一操做

注意:

在遍歷過程當中可使用 return false提早結束each循環。

終止each循環

return false

伏筆...

.data()

在匹配的元素集合中的全部元素上存儲任意相關數據或返回匹配的元素集合中的第一個元素的給定名稱的數據存儲的值。

.data(key, value):

描述:在匹配的元素上存儲任意相關數據。

$("div").data("k",100);//給全部div標籤都保存一個名爲k,值爲100

.data(key):

描述: 返回匹配的元素集合中的第一個元素的給定名稱的數據存儲的值—經過 .data(name, value)HTML5 data-*屬性設置。

$("div").data("k");//返回第一個div標籤中保存的"k"的值

.removeData(key):

描述:移除存放在元素上的數據,不加key參數表示移除全部保存的數據。

$("div").removeData("k");  //移除元素上存放k對應的數據

示例:

模態框編輯的數據回填表格

插件(瞭解便可)

jQuery.extend(object)

jQuery的命名空間下添加新的功能。多用於插件開發者向 jQuery 中添加新函數時使用。

示例:

複製代碼
<script>
jQuery.extend({
  min:function(a, b){return a < b ? a : b;},
  max:function(a, b){return a > b ? a : b;}
});
jQuery.min(2,3);// => 2
jQuery.max(4,5);// => 5
</script>
複製代碼

jQuery.fn.extend(object)

一個對象的內容合併到jQuery的原型,以提供新的jQuery實例方法。

複製代碼
<script>
  jQuery.fn.extend({
    check:function(){
      return this.each(function(){this.checked =true;});
    },
    uncheck:function(){
      return this.each(function(){this.checked =false;});
    }
  });
// jQuery對象可使用新添加的check()方法了。
$("input[type='checkbox']").check();
</script>
複製代碼

單獨寫在文件中的擴展:

複製代碼
(function(jq){
  jq.extend({
    funcName:function(){
    ...
    },
  });
})(jQuery);
複製代碼

例子:

自定義的jQuery登陸驗證插件

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸校驗示例</title>
  <style>
    .login-form {
      margin: 100px auto 0;
      max-width: 330px;
    }
    .login-form > div {
      margin: 15px 0;
    }
    .error {
      color: red;
    }
  </style>
</head>
<body>



div
  form action="" class="login-form" novalidate

    <div>
      <label for="username">姓名</label>
      <input id="username" type="text" name="name" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="passwd">密碼</label>
      <input id="passwd" type="password" name="password" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="mobile">手機</label>
      <input id="mobile" type="text" name="mobile" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="where">來自</label>
      <input id="where" type="text" name="where" autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <input type="submit" value="登陸">
    </div>
    

  /form
/div

script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script src="validate.js"/script
script
  $.validate();
/script
/body
/html
HTML文件
"use strict";
(function ($) {
  function check() {
    // 定義一個標誌位,表示驗證經過仍是驗證不經過
    var flag = true;
    var errMsg;
    // 校驗規則
    $("form input[type!=':submit']").each(function () {
      var labelName = $(this).prev().text();
      var inputName = $(this).attr("name");
      var inputValue = $(this).val();
      if ($(this).attr("required")) {
        // 若是是必填項
        if (inputValue.length === 0) {
          // 值爲空
          errMsg = labelName + "不能爲空";
          $(this).next().text(errMsg);
          flag = false;
          return false;
        }
        // 若是是密碼類型,咱們就要判斷密碼的長度是否大於6位
        if (inputName === "password") {
          // 除了上面判斷爲不爲空還要判斷密碼長度是否大於6位
          if (inputValue.length < 6) {
            errMsg = labelName + "必須大於6位";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
        // 若是是手機類型,咱們須要判斷手機的格式是否正確
        if (inputName === "mobile") {
          // 使用正則表達式校驗inputValue是否爲正確的手機號碼
          if (!/^1[345678]\d{9}$/.test(inputValue)) {
            // 不是有效的手機號碼格式
            errMsg = labelName + "格式不正確";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
      }
    });
    return flag;
  }

  function clearError(arg) {
    // 清空以前的錯誤提示
    (arg).next().text("");
  }
  // 上面都是我定義的工具函數
  .extend({
    validate: function () {
      ("form :submit").on("click", function () {
      return check();
    });
    ("form :input[type!='submit']").on("focus", function () {
      clearError(this);
    });
    }
  });
})(jQuery);
JS文件

 傳參版插件:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>登陸校驗示例</title>
  <style>
    .login-form {
      margin: 100px auto 0;
      max-width: 330px;
    }
    .login-form > div {
      margin: 15px 0;
    }
    .error {
      color: red;
    }
  </style>
</head>
<body>



div
  form action="" class="login-form" novalidate

    <div>
      <label for="username">姓名</label>
      <input id="username" type="text" name="name" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="passwd">密碼</label>
      <input id="passwd" type="password" name="password" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="mobile">手機</label>
      <input id="mobile" type="text" name="mobile" required autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <label for="where">來自</label>
      <input id="where" type="text" name="where" autocomplete="off">
      <span class="error"></span>
    </div>
    <div>
      <input type="submit" value="登陸">
    </div>
    

  /form
/div

script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"/script
script src="validate3.js"/script
script
  $.validate({"name":{"required": true}, "password": {"required": true, "minLength": 8}, "mobile": {"required": true}});
/script
/body
/html
HTML文件
"use strict";
(function ($) {
  function check(arg) {
    // 定義一個標誌位,表示驗證經過仍是驗證不經過
    var flag = true;
    var errMsg;
    // 校驗規則
    $("form input[type!=':submit']").each(function () {
      var labelName = $(this).prev().text();
      var inputName = $(this).attr("name");
      var inputValue = $(this).val();
      if (arg[inputName].required) {
        // 若是是必填項
        if (inputValue.length === 0) {
          // 值爲空
          errMsg = labelName + "不能爲空";
          $(this).next().text(errMsg);
          flag = false;
          return false;
        }
        // 若是是密碼類型,咱們就要判斷密碼的長度是否大於6位
        if (inputName === "password") {
          // 除了上面判斷爲不爲空還要判斷密碼長度是否大於6位
          if (inputValue.length < arg[inputName].minLength) {
            errMsg = labelName + "必須大於"+arg[inputName].minLength+"位";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
        // 若是是手機類型,咱們須要判斷手機的格式是否正確
        if (inputName === "mobile") {
          // 使用正則表達式校驗inputValue是否爲正確的手機號碼
          if (!/^1[345678]\d{9}$/.test(inputValue)) {
            // 不是有效的手機號碼格式
            errMsg = labelName + "格式不正確";
            $(this).next().text(errMsg);
            flag = false;
            return false;
          }
        }
      }
    });
    return flag;
  }

  function clearError(arg) {
    // 清空以前的錯誤提示
    (arg).next().text("");
  }
  // 上面都是我定義的工具函數
  .extend({
    validate: function (arg) {
      ("form :submit").on("click", function () {
      return check(arg);
    });
    ("form :input[type!='submit']").on("focus", function () {
      clearError(this);
    });
    }
  });
})(jQuery);
JS文件

課後習題:

  1. 登陸+驗證
  2. 左側菜單
  3. 表格-增、刪、改、查
this); }); } }); })(jQuery);
JS文件

課後習題:

  1. 登陸+驗證
  2. 左側菜單
  3. 表格-增、刪、改、查
相關文章
相關標籤/搜索