Blogger Information
Blog 30
fans 0
comment 0
visits 19993
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10月23日作业,练习通过jquery的id、class选择器选择元素,$.each遍历数组
人生就像过山车的博客
Original
809 people have browsed it

老师好, 10月23练习通过jquery的id、class选择器选择元素,$.each遍历数组。 最近事很多,比较忙,而且由于纽约进入了冬令时,从而时差变为了13小时,以至于无法第一时间看直播了,但是还是会忙里偷闲看录播以及补写作业的,老师辛苦了,感恩感恩,虽然我进度落下来了,但是还会抽空推进,该做的作业,该交的毕设都不会少的。

获取div id=div01 的文本并输出


                    var text = $("#div01").text();


                    document.write(text);


                    获取 div id=section1下的class my-0 的文本并输出 


                    var text2 = $("#section1>.my-0").text();


                    document.write(text2);


                    $.each遍历数组并输出


                    var myArray = ["apple", "mango", "orange", "grapes", "banana"];

                    $.each(myArray, function (index, value) {

                    document.write(index+' : '+value);

                    });


结果如下:

代码如下(此处div的id是div01):

练习通过jquery的id、class选择器选择元素,

$.each遍历数组0 : apple1 : mango2 : orange3 : grapes4 : banana     

点击链接,查看作业             

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