清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | <!DOCTYPE Html> < html > < head > < script type = "text/javascript" src = "http://code.jquery.com/jquery-1.4.4.min.js" ></ script > < script type = "text/javascript" > function selectAll(checkbox) { $('input[type=checkbox]').prop('checked', $(checkbox).prop('checked')); } </ script > </ head > < body > < input type = "checkbox" onclick = "selectAll(this);" />全选< br /> < input type = "checkbox" />< br /> < input type = "checkbox" />< br /> < input type = "checkbox" />< br /> < input type = "checkbox" />< br /> < input type = "checkbox" />< br /> < input type = "checkbox" />< br /> …… </ body > </ html > |