当前位置: 代码迷 >> Web前端 >> 只是记要jquery checkbox
  详细解决方案

只是记要jquery checkbox

热度:92   发布时间:2012-07-24 17:47:58.0
只是记录jquery checkbox

?

http://blog.sunshow.net/2007/11/jquery-checkbox-checkall/

?

?

?

		$("#toQueryAll").click(function(){
			$('input[@type=checkbox][name=toQuery]').attr('checked',this.checked);
		 });
		
		$("#toDealAll").click(function(){
			$('input[@type=checkbox][name=toDeal]').attr('checked',this.checked);
		 });
  相关解决方案