windlike的web开发博客
windlike
全部博文(50)
Open Source(0)
Ajax(0)
JavaScript(10)
Other(1)
Linux(0)
DOS(0)
Windows(0)
电子商务(1)
职业生涯(0)
影视歌曲(0)
经典短信(0)
幽默搞笑(0)
精彩网文(0)
2011年(2)
2010年(2)
2009年(41)
2008年(5)
tonera
qnl12345
lianghui
ourlittl
lanloveh
shwda
fengruiz
lcc0556
lyna_chi
yainana
分类:
2009-07-08 15:36:23
<script language="javascript"> function selectAll(obj){ for(var i=0; i<obj.elements.length; i++) if(obj.elements[i].type == "checkbox") obj.elements[i].checked = true; } function invert(obj){ for(var i=0; i<obj.elements.length; i++) if(obj.elements[i].type == "checkbox" ) obj.elements[i].checked = !obj.elements[i].checked; } </script> <form name="products_listing"> <input type="checkbox" name="products[]" value="1">1 <input type="checkbox" name="products[]" value="2">2 <input type="checkbox" name="products[]" value="3">3 <input type="checkbox" name="products[]" value="4">4 <input type="checkbox" name="products[]" value="5">5 <input type="checkbox" name="products[]" value="6">6 <input type="button" value="Select All" onclick="selectAll(document.products_listing)"> <input type="button" value="Invert" onclick="invert(document.products_listing)"> </form>
上一篇:简易下载进度条
下一篇:Javascript函数大全 -(个人函数收集)
登录 注册