ภาษาไทย
<!--เพิ่มโค้ดต่อไปนี้ลงในพื้นที่ <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); > max) { alert("ขออภัย คุณสามารถเลือกได้เฉพาะ " + max + " items!"); 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>