DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javascript實現復選框超過限制即彈出警告框的方法
javascript實現復選框超過限制即彈出警告框的方法
編輯:JavaScript綜合知識     

 這篇文章主要介紹了javascript實現復選框超過限制即彈出警告框的方法,涉及復選框及警告框的操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下

   

本文實例講述了javascript實現復選框超過限制即彈出警告框的方法。分享給大家供大家參考。具體實現方法如下:

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 <html> <title>javascript實現復選框超過限制即彈出警告框的方法</title> <body> <SCRIPT LANGUAGE="JavaScript"> <!--// function countChoices(obj) { max = 2; box1 = obj.form.box1.checked; box2 = obj.form.box2.checked; box3 = obj.form.box3.checked; count = (box1 ? 1 : 0) + (box2 ? 1 : 0) + (box3 ? 1 : 0); if (count > max) { alert("對不起,你只能選擇" + max + "個項目!"); obj.checked = false; } } //--> </script> <form name="form"> 請最多選擇2個項目: <p> <input type=checkbox name=box1 onClick="countChoices(this)"> 選擇項目1 <p> <input type=checkbox name=box2 onClick="countChoices(this)"> 選擇項目2 <p> <input type=checkbox name=box3 onClick="countChoices(this)"> 選擇項目3 <p> <div> </div> </FORM> </body> </html>

希望本文所述對大家的javascript程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved