這篇文章主要介紹了javascript實現復選框超過限制即彈出警告框的方法,涉及復選框及警告框的操作技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了javascript實現復選框超過限制即彈出警告框的方法。分享給大家供大家參考。具體實現方法如下:
<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程序設計有所幫助。
更多信息請查看IT技術專欄