摘要:
需求:有一个数组:(北京菜,粤菜),checkbox如下:现在想通过遍历这个数组,使数组里包含的值,在checkbox选中代码:var flavors = new Array([北京菜 , 粤菜]);$.each(flavors,function(i,item){$("input[name='checkboxFlavor'][value="+item+"]").attr("checked","checked");});体会:选择器的[]可以有多重的选择条件 阅读全文