Blogger Information
Blog 25
fans 1
comment 1
visits 17368
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0303作业+jQuery入门+10期线上班
江川林
Original
961 people have browsed it
jQuery引入文档

1,在官网下载2,在又拍云等进行CDN引入3,用composer引入

jQuery语法,4大应用场景

1,$(CSS选择器)2,$(JS对象),将JS对象转化为jQuery对象3,$(带标签的HTML文档),直接将此转化为HTML元素4,$(回调函数)以下是实操

// console.log($(document).jquery); // 1,jQuery语法 // $(选择器) var one = $('.one', [name]); // var one = $('.one'); // one = $('[name]'); // one = $('ul .one'); console.log(one); // $(JS对象) var two = {one:"20",two:30}; $(two); // console.log($(two)); // $(带标签的HTML文本) $('我们是一家').insertBefore('form'); // $(回调函数):在文档加载之后并DOM处于可操作额状态才会调用 $(function () { $('ul>li:nth-child(2)').css('color', 'red'); }); // 2,jQuery函数:jQuery()/$(),用于创建jquery对象,注册DOM就绪回调,也被称之为jQuery全局对象 // 3,jQuery对象:是jQuery函数的返回值,由多个HTML元素对象组成,是一个类数组,具有length属性 // 4,jQuery方法 var lis = $('ul>li'); // console.log(lis); // console.log(lis.size()); // console.log(lis.get(1)); // console.log(lis.toArray()); // 5,静态方法与普通方法 $.each(lis,function (index, value) { // console.log(index,value) }); $('ul>li').each(function (index, value) { // console.log(index,value) }) jQuery函数

-jQuery()/$()-用于创建jquery对象的工厂函数

jQuery对象

-是jQuery函数的返回值-返回多个HTML元素对象组成的文档元素集合

jQuery方法

-size(),返回被选元素中子元素的个数-get(),获取想要的子元素,参数为0开始的索引

查询结果的处理

-toArray(),将jQuery对象转换成真正的数组-each(),遍历jQuery对象$.each(选择的元素,function(index,value){})或者$(选择的元素).each(function(index,value){})-map(),遍历对象,返回新数组$.map(选择的元素,function(index,value){})-index(),返回选择元素的索引值-is(),判断元素中是否存在某元素以下是关键代码

// $('ul li').css("background-color",'yellow'); var arr = $.map($('li'), function (value, index) { if (index % 2) return value }); console.log(arr); // index() var index = $('li:nth-child(2)').index(); // console.log(index); $('li').click(function () { console.log('当前点击的是:' + ($(this).index() + 1)); }) // is() var is = $('li').is('.one'); console.log(is); // 5,静态方法与普通方法 $.each(lis,function (index, value) { // console.log(index,value) }); $('ul>li').each(function (index, value) { // console.log(index,value) })
Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

Teacher's comments:请按作业要求完成, 代码格式化后的交
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments