한국어
<!--<body> 영역에 다음 코드를 추가합니다--> <SCRIPT LANGUAGE="JavaScript"> <!--// function countChoices(obj) { max = 2 = obj.form.box1.checked; ; box2 = obj.form.box2.checked; box3 = obj.form.box3.checked; 개수 = (box1 ? 1 : 0) + (box3 ? 1 : 0); > 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>