js怎么写循环教程

1.怎么在js里面写循环啊var data = http://www.xuexi88.com/zhishi/[1,2,3,4]; //假设data是数据库的数据 一个数组
var imgs = {};
for( var i = 0; i < data.length; i++){
imgs['rc_' + parseInt(i+1,10)] = data[i];
}
console.log(imgs);
输出是个json对象 分别是下面几个项:
rc_1 1
rc_2 2
rc_3 3
rc_4 4
2.帮忙用JS写个很简单的循环<script language=javascript>
<!--
i=5;
for (x=0;x<i;x++){
if ((x % 2)==0){
document.write("box_m_left<br>;"); //输出box_m_left
}else{
document.write("box_m_right<br>;"); //输出box_m_right
}
}
-->
</script>
3.定义JS变量时,如何做循环btn1: function(index){ //或者使用btn1
//按钮【按钮一】的回调
//layer.msg('按钮【按钮一】的回调',{icon: 1});
select = 1;
select_return(index);
},
btn2: function(index){ //或者使用btn2
//按钮【按钮二】的回调
//layer.msg('按钮【按钮二】的回调',{icon: 2});
select = 2;
select_return(index);
},
btn3: function(index){
//按钮【按钮三】的回调
//layer.msg('按钮【按钮三】的回调',{icon: 3});
select = 3;
select_return(index);
}.
btn4: function(index){
//按钮【按钮4】的回调
//layer.msg('按钮【按钮4】的回调',{icon: 4});
select = 4;
select_return(index);
},
btn5: function(index){
//按钮【按钮5】的回调
//layer.msg('按钮【按钮5】的回调',{icon: 5});
select = 5;
select_return(index);
}把这一整段写成一个字符串返回给页面好了 。想了半天没什么好方法,呵呵 。主要是不知道你其他地方是怎么实现的 。
4.js函数名循环怎么写<meta ;charset=utf-8" />。
5.下面这段js代码循环语句怎么写,我是初学者,只能通过最笨的办法function features(id){
for (i=1;i{
if (id=i)
{
$('.c_features'+i+'_on').show();
$('.c_features'+i).hide();
}
else
{
$('.c_features'+i+'_on').hide();
$('.c_features'+i).show();
}
}
【js怎么写循环教程】}
//-->
$('.c_features1').click(features(1));
……
$('.c_features4').click(features(4));

js怎么写循环教程

文章插图