美文网首页
jQuery的基本操作

jQuery的基本操作

作者: Cyj___ | 来源:发表于2018-07-24 14:33 被阅读0次
    1、document.querySlector() 选择单个,
    2、document.querySlectorAll() 选择多个,

    jQuery是目前使用最广泛的javascript函数库。

    jQuery的版本分为1.x系列和2.x、3.x系列,1.x系列兼容低版本的浏览器
    2.x、3.x系列放弃支持低版本浏览器,目前使用最多的是1.x系列的。
    

    jquery是一个函数库,一个js文件,页面用script标签引入这个js文件就可以使用。

    引入一个外部js 代码 《script type="text/javascript" src="js/jquery-1.12.2.js">

    jquery的口号和愿望 Write Less, Do More(写得少,做得多)

    jquery选择器
    $(document)              //选择整个文档对象
    $('li')              //选择所有的li元素
    $('#myId')              //选择id为myId的网页元素
    $('.myClass')              // 选择class为myClass的元素
    $('input[name=first]')                // 选择name属性等于first的input元素
    $('#ul1 li span')                      //选择id为为ul1元素下的所有li下的span元素
    对选择集进行修饰过滤(类似CSS伪类)
        $('#ul1 li:first')             //选择id为ul1元素下的第一个li
        $('#ul1 li:odd')             //选择id为ul1元素下的li的奇数行
        $('#ul1 li:eq(2)')           //选择id为ul1元素下的第3个li
        $('#ul1 li:gt(2)')            // 选择id为ul1元素下的前三个之后的li
        $('#myForm :input')     // 选择表单中的input元素
        $('div:visible')               //选择可见的div元素
    对选择集进行函数过滤
        $('div').has('p'); // 选择包含p元素的div元素
        $('div').not('.myClass'); //选择class不等于myClass的div元素
        $('div').filter('.myClass'); //选择class等于myClass的div元素
        $('div').first(); //选择第1个div元素
        $('div').eq(5); //选择第6个div元素
    选择集转移
        $('div').prev('p'); //选择div元素前面的第一个p元素
        $('div').next('p'); //选择div元素后面的第一个p元素
        $('div').closest('form'); //选择离div最近的那个form父元素
        $('div').parent(); //选择div的父元素
        $('div').children(); //选择div的所有子元素
        $('div').siblings(); //选择div的同级元素
        $('div').find('.myClass'); //选择div内的class等于myClass的元素
    
    

    jquery样式操作

        $("#div1").addClass("divClass2") //为id为div1的对象追加样式divClass2
        $("#div1").removeClass("divClass")  //移除id为div1的对象的class名为divClass的样式
        $("#div1").removeClass("divClass divClass2") //移除多个样式
        $("#div1").toggleClass("anotherClass") //重复切换anotherClass样式
    
    
    

    click 点击事件;

    重复切换 (添加 / 删除 style 样式 )

    重复切换:toggleClass

    jquery属性操作

    1、html() 取出或设置html内容

    2、text() 取出或设置text内容

    3、attr() 取出或设置某个属性的值

    jquery特殊效果

    fadeIn() 淡入

    fadeOut() 淡出

    fadeToggle() 切换淡入淡出

    hide() 隐藏元素

    show() 显示元素

    toggle() 依次展示或隐藏某个元素

    slideDown() 向下展开

    slideUp() 向上卷起

    slideToggle() 依次展开或卷起某个元素

    引入一个外部js 《script type = "tex/javascript" src = "js/javascript--路径.js"》《/script》

    innerhtml -- 元素里面包含的内容;
    
    样式用css;用,逗号隔开;
    

    绑定click事件

    例如:$('#btn1').click(function(){
    
    // 内部的this指的是原生对象
    
    // 使用jquery对象用 $(this)
    
    })
    
    多选框默认勾选《input type = "checkbox" id = "check" checked = "checked"》多选
    

    prop 和 attr 的区别

    • prop 专门读取 true 和 False 的属性值;
    • attr 是读取其他的 除了true 和 false 的属性值;

    面试题 : ready 和 onload 的区别?

    • jquery 里面的节点(标签)执行好了。。。window.onload 页面渲染都执行完后在执行window.onload.
    • ready 比 window.onload 加载的快;

    相关文章

      网友评论

          本文标题:jQuery的基本操作

          本文链接:https://www.haomeiwen.com/subject/iygemftx.html