l**********n 发帖数: 8443 | |
t*********h 发帖数: 941 | 2 完全不懂jquery 查了一下他那个手册 不就是一个个选吗
$('#make-me-blue').blue();
$('section:eq(0) :last-child').blue()
$('section:eq(1) span:eq(0)').blue()
$('section:eq(1) i:eq(1)').blue()
$('section:eq(1) div:eq(1) div').blue()
不过都是selector的应用啊 对backend没啥帮助
【在 l**********n 的大作中提到】 : http://tutorialzine.com/2014/05/javascript-challenge-make-me-bl : 里面的第四道题不会做了。
|
i**i 发帖数: 1500 | 3 $("*").each(function(k,v){$(v).contents().each(function(a,b){if(b.nodeType =
= 8){$(v).blue();}})}) |
l**********n 发帖数: 8443 | 4 这个牛。多谢
=
【在 i**i 的大作中提到】 : $("*").each(function(k,v){$(v).contents().each(function(a,b){if(b.nodeType = : = 8){$(v).blue();}})})
|
l**********n 发帖数: 8443 | 5 你这个也行
【在 t*********h 的大作中提到】 : 完全不懂jquery 查了一下他那个手册 不就是一个个选吗 : $('#make-me-blue').blue(); : $('section:eq(0) :last-child').blue() : $('section:eq(1) span:eq(0)').blue() : $('section:eq(1) i:eq(1)').blue() : $('section:eq(1) div:eq(1) div').blue() : 不过都是selector的应用啊 对backend没啥帮助
|
t*********h 发帖数: 941 | 6 这个不错
=
【在 i**i 的大作中提到】 : $("*").each(function(k,v){$(v).contents().each(function(a,b){if(b.nodeType = : = 8){$(v).blue();}})})
|
i**i 发帖数: 1500 | 7 因为问题是:
... make the elements with comments blue.
:)
【在 t*********h 的大作中提到】 : 这个不错 : : =
|
l**********n 发帖数: 8443 | 8 急了我就这么做,只要达到目的就行
【在 t*********h 的大作中提到】 : 完全不懂jquery 查了一下他那个手册 不就是一个个选吗 : $('#make-me-blue').blue(); : $('section:eq(0) :last-child').blue() : $('section:eq(1) span:eq(0)').blue() : $('section:eq(1) i:eq(1)').blue() : $('section:eq(1) div:eq(1) div').blue() : 不过都是selector的应用啊 对backend没啥帮助
|
t*********h 发帖数: 941 | 9 对 我也尝试这么做 但实在不熟 没做出来 哈哈
下面有些题有order 所以也不能这么做了
【在 i**i 的大作中提到】 : 因为问题是: : ... make the elements with comments blue. : :)
|
t*********h 发帖数: 941 | 10 实际中估计也只能这么做 估计很少回去改变一批element吧
【在 l**********n 的大作中提到】 : 急了我就这么做,只要达到目的就行
|
W***o 发帖数: 6519 | 11 not too hard bah, it's just selection by criteria.
I just read this part in a JS book yesterday, hehe
【在 l**********n 的大作中提到】 : http://tutorialzine.com/2014/05/javascript-challenge-make-me-bl : 里面的第四道题不会做了。
|
l**********n 发帖数: 8443 | 12 不难,就是经验
【在 W***o 的大作中提到】 : not too hard bah, it's just selection by criteria. : I just read this part in a JS book yesterday, hehe
|
i**i 发帖数: 1500 | 13 没错。 这没有一定之规。
【在 l**********n 的大作中提到】 : 急了我就这么做,只要达到目的就行
|