日期:2014-05-16 浏览次数:20404 次
var channel = data.switchChannelStatus.length/2 + 1;
var str = "";
for(var i=1;i<=channel;i++){
str +="<div>第"+i+"路:<input type=\"radio\" value=\"1\" checked=\"checked\" id=\"rdc"+i+"1\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"1\">开启</label> <input type=\"radio\" value=\"0\" id=\"rdc"+i+"0\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"0\">关闭</label></div>"
}
}
var channel = '1,0,1,1,1';
var chsp = channel.split(',');
var str = "";
for(var i=1;i<=chsp.length;i++){
str += chsp[i-1] == 1 ? "<div>第"+i+"路:<input type=\"radio\" checked = \"checked\" value=\"1\" id=\"rdc"+i+"1\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"1\">开启</label> <input type=\"radio\" value=\"0\" id=\"rdc"+i+"0\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"0\">关闭</label></div>" : "<div>第"+i+"路:<input type=\"radio\" value=\"1\" id=\"rdc"+i+"1\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"1\">开启</label> <input type=\"radio\" checked = \"checked\" value=\"0\" id=\"rdc"+i+"0\" name=\"instruction_"+i+"\"><label for=\"rdc"+i+"0\">关闭</label></div>";
}
document.write(str);