jquery 循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery 循环相关的知识,希望对你有一定的参考价值。
prototype中$H实现的功能在jquery中如何实现!
例:var arr = ('div', , background: 'url(/images/uploading.gif) repeat-x', height: '5px', positive: 'absolute')
现在如何把数组中的第三项变成key---value形式,即background为key值,url(/images/uploading.gif) repeat-x为value值?
请高手指教!
key和value都是动态的,像key的值为css样式属性名称,事先不知道是什么!
如:attributes为 background: 'url(/images/uploading.gif) repeat-x', height: '5px', positive: 'absolute'
prototype可以这样写
$H(attributes).each(function(pair)
eval("el." + pair.key + "='" + pair.value + "'");
);
不知道jquery如何实现这种功能!
$("<div></div>").attr("id","title")
.appendTo($('body'))
.attr("style","background: url(/images/uploading.gif) repeat-x; height: 5px;positive: absolute")
.html("<a href='javascript:closer()' >[关闭]</a>");
当然能了
$("p").css( color: "#ff0011", background: "blue" );
$("p").css( "margin-left": "10px", "background-color": "blue" );本回答被提问者采纳
jquery $.each 和for怎么跳出循环终止本次循环
如何在jquery 中的循环中终止本次循环或者跳出循环呢?查些资料,并且试验过发现下面方法可以
1、for循环中我们使用continue;终止本次循环计入下一个循环,使用break终止整个循环。
2、而在jquery中 $.each则对应的使用return true 和return false。
break可以跳出switch...case语句,继续执行switch语句后面的内容。break语句还可以跳出循环,也就是结束循环语句的执行。
continue语句的作用为结束本次循环,接着进行下一次是否执行循环的判断。
continue与break的区别是:break是彻底结束循环,而continue是结束本次循环
出自:http://www.jb51.net/article/41746.htm
以上是关于jquery 循环的主要内容,如果未能解决你的问题,请参考以下文章