中文(繁体)
<!--把如下程式碼加入<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> </form>