01. jQuery 基础

  • jQuery简介

  1. jQuery是一个JavaScript库;
  2. jQuery下载地址http://jquery.com/download/#Download_jQuery
    精简版:即压缩版,删除了代码的空格和空行,功能与原版一致,用于实际发布;
    原版:即未压缩版,便于阅读,用于测试,学习,开发.
  3. 将下载过的jQuery文件放到文档目录下,在head中引用后即可使用;
    <script src="jquery-3.2.1.js"></script>

  • jQuery基本语法

    $(selector).action()
    1.$符号定义jQuery;
    2.selector定义选择器,查询和选择html元素;
    3.action执行对元素的操作;
    4.为防止在文档完全加载之前运行jQuery代码,一般将jQuery代码定义在文档就绪函数中;
    $(document).ready(function(){
    --- jQuery 代码 ----
    });
    

  • jQuery选择器

    选择器 实例 释义
    元素选择器
    * $("*") 所有元素
    #id $("#lastname") id="lastname" 的元素
    .class $(".intro") 所有 class="intro" 的元素
    element $("p") 所有 <p> 元素
    .class.class $(".intro.demo") 所有 class="intro" 且 class="demo" 的元素
    伪类
    :first $("p:first") 第一个 <p> 元素
    :last $("p:last") 最后一个 <p> 元素
    :even $("tr:even") 所有偶数 <tr> 元素
    :odd $("tr:odd") 所有奇数 <tr> 元素
    :eq(index) $("ul li:eq(3)") 列表中的第四个元素(index 从 0 开始)
    :gt(no) $("ul li:gt(3)") 列出 index 大于 3 的元素
    :lt(no) $("ul li:lt(3)") 列出 index 小于 3 的元素
    :not(selector) $("input:not(:empty)") 所有不为空的 input 元素
    :header $(":header") 所有标题元素 <h1> - <h6>
    :animated 所有动画元素
    :contains(text) $(":contains('W3School')") 包含指定字符串的所有元素
    :empty $(":empty") 无子(元素)节点的所有元素
    :hidden $("p:hidden") 所有隐藏的 <p> 元素
    :visible $("table:visible") 所有可见的表格
    s1,s2,s3 $("th,td,.intro") 所有带有匹配选择的元素
    属性选择器
    [attribute] $("[href]") 所有带有 href 属性的元素
    [attribute=value] $("[href='#']") 所有 href 属性的值等于 "#" 的元素
    [attribute!=value] $("[href!='#']") 所有 href 属性的值不等于 "#" 的元素
    [attribute$=value] $("[href$='.jpg']") 所有 href 属性的值包含以 ".jpg" 结尾的元素
    input元素
    :input $(":input") 所有 <input> 元素
    :text $(":text") 所有 type="text" 的 <input> 元素
    :password $(":password") 所有 type="password" 的 <input> 元素
    :radio $(":radio") 所有 type="radio" 的 <input> 元素
    :checkbox $(":checkbox") 所有 type="checkbox" 的 <input> 元素
    :submit $(":submit") 所有 type="submit" 的 <input> 元素
    :reset $(":reset") 所有 type="reset" 的 <input> 元素
    :button $(":button") 所有 type="button" 的 <input> 元素
    :image $(":image") 所有 type="image" 的 <input> 元素
    :file $(":file") 所有 type="file" 的 <input> 元素
    :enabled $(":enabled") 所有激活的 input 元素
    :disabled $(":disabled") 所有禁用的 input 元素
    :selected $(":selected") 所有被选取的 input 元素
    :checked $(":checked") 所有被选中的 input 元素

  • jQuery事件

    方法 描述 语法(参数前带-为可选参数)
    bind() 为当前元素附加(多个)事件处理器 $(selector).bind(event,-data,function)
    blur() 失去焦点 $(selector).blur(-function)
    change() 改变 $(selector).change(-function)
    click() 点击 $(selector).click(-function)
    dblclick() 双击 $(selector).dblclick(-function)
    delegate() 为当前元素的子元素添加事件处理器 $(selector).delegate(childSelector,event,-data,function)
    die() 移除所有通过live()函数添加的事件处理程序 $(selector).die(event,-function)
    error() 元素发生错误时 $(selector).error(function)
    event.isDefaultPrevented() 返回event对象是否调用了event.preventDefault() event.isDefaultPrevented()
    event.pageX 鼠标位置的x坐标 event.pageX
    event.pageY 鼠标位置的y坐标 event.pageY
    event.preventDefault() 阻止事件的默认动作 event.preventDefault()
    event.result 元素的最后一个事件的返回值 event.result
    event.target 事件触发的元素 event.target
    event.timeStamp 返回从 1970 年 1 月 1 日到事件发生时的毫秒数 event.timeStamp
    event.type 返回事件的类型 event.type
    event.which 指示按了哪个键盘键或按钮 event.which
    focus() 获得焦点 $(selector).focus(-function)
    keydown() 键盘按下 $(selector).keydown(-function)
    keypress() 输入字符时 $(selector).keypress(-function)
    keyup() 键盘松开 $(selector).keyup(-function)
    live() 为元素添加(多个)事件处理器 $(selector).live(event,-data,function)
    load() 加载完成时 $(selector).load(function)
    mousedown() 鼠标按下 $(selector).mousedown(-function)
    mouseenter() 鼠标进入(当前元素) $(selector).mouseenter(-function)
    mouseleave() 鼠标离开(当前元素) $(selector).mouseleave(-function)
    mousemove() 鼠标移动 $(selector).mousemove(-function)
    mouseout() 鼠标离开(当前元素及子元素) $(selector).mouseout(-function)
    mouseover() 鼠标进入(当前元素及子元素) $(selector).mouseover(-function)
    mouseup() 鼠标松开 $(selector).mouseup()
    one() 元素添加只处理一次的事件处理器 $(selector).one(event,-data,function)
    ready() 文档加载完成 $(document).ready(function)
    resize() 窗口大小改变时 $(selector).resize(-function)
    scroll() 元素/窗口滚动时 $(selector).scroll(-function)
    select() 文本被选择时 $(selector).select(-function)
    submit() 当提交表单时 $(selector).submit(-function)
    toggle() 绑定两个或多个事件处理器函数,当发生轮流的 click 事件时执行 $(selector).toggle(function1(),function2(),-functionN(),...)
    切换显示/隐藏 $(selector).toggle(-speed,-callback)
    trigger() 触发元素的某一类型事件 $(selector).trigger(event,-[param1,param2,...])
    triggerHandler() 1.不触发默认事件;
    2.只触发第一个元素;
    3.只针对目标元素;
    4.返回值为触发事件的返回值,无触发则返回undefined
    $(selector).triggerHandler(event,-[param1,param2,...])
    unbind() 移除元素(一个)事件处理器 $(selector).unbind(-event,-function)
    undelegate() 移除delegate()方法添加的事件 $(selector).undelegate(-selector,-event,-function)
    unload() 离开页面时 event.unload(function)

<!DOCTYPE html>
<html>

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            button {
                background-color: cornflowerblue;
                color: white;
                padding: 0.5em;
                border-radius: 1em;
                outline: none;
                border: solid 1px lightskyblue;
            }
            
            p {
                background-color: gainsboro;
                padding: 0.5em;
                border-radius: 0.5em;
                font-family: "楷体";
            }
        </style>
        <script src="js/jquery-3.2.1.js"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                $("button").mousedown(function() {
                    $(this).css("background-color", "darkslateblue");
                });
                $("button").mouseup(function() {
                    $(this).css("background-color", "cornflowerblue");
                });
            });
        </script>
    </head>

    <body>
        <p title="displayContent">显示与隐藏</p>
        <button id="swithDisplay">隐藏</button>
        <script type="text/javascript">
            $(document).ready(function() {
                $("#swithDisplay").bind("click", function() {
                    $("[title='displayContent']").toggle(500);
                    if($(this).text()=="隐藏") {
                        $(this).text("显示");
                    } else {
                        $(this).text("隐藏");
                    }
                });
            });
        </script>
    </body>

</html>
test30.gif
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 211,265评论 6 490
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,078评论 2 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 156,852评论 0 347
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,408评论 1 283
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,445评论 5 384
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,772评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,921评论 3 406
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,688评论 0 266
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,130评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,467评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,617评论 1 340
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,276评论 4 329
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,882评论 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,740评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,967评论 1 265
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,315评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,486评论 2 348

推荐阅读更多精彩内容

  • (续jQuery基础(1)) 第5章 DOM节点的复制与替换 (1)DOM拷贝clone() 克隆节点是DOM的常...
    凛0_0阅读 1,324评论 0 8
  • 1.JQuery 基础 改变web开发人员创造搞交互性界面的方式。设计者无需花费时间纠缠JS复杂的高级特性。 1....
    LaBaby_阅读 1,330评论 0 2
  • 1.JQuery 基础 改变web开发人员创造搞交互性界面的方式。设计者无需花费时间纠缠JS复杂的高级特性。 1....
    LaBaby_阅读 1,167评论 0 1
  • 本文参加#见字如面·寸草春晖#征文活动,文章为作者原创。 作者:索晓筱 学校:山西师范大学现代文理学院 联...
    糖果味的吻s阅读 279评论 0 0
  • 刚读完了朱自强先生的这本《小学语文儿童文学教学法》,扫了不少盲。以前,一方面不知道如何为孩子做精读;另一方面,听说...
    Friz阅读 168评论 0 1