做无刷新页面的时候,会碰到无法从服务器取list的size,每条list都有一个radio button, 这时候想uncheck所有radio的时候,可以用prototype方法来完成遍历:
<input type="radio" name="selectedGrie" value=''>
var idxs=$('selectedGrie'); var nodes=$A(idxs); nodes.each(function(node){ node.checked=false; //alert(node.value); });
时间: 2024-10-30 15:25:31