織夢(mèng)實(shí)現(xiàn)多選框全選/取消實(shí)例代碼:
<!DOCTYPE Html> <html> <head> <script type="text/javascript" src=jquery-1.8.3.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> |
版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!
轉(zhuǎn)載請(qǐng)注明: 織夢(mèng)實(shí)現(xiàn)多選框全選/取消方法