ช่วยดูโค้ด จาวาสคิปให้หน่อยครับ รบกวนช่วยดูโค้ดจาวาสคิปให้หน่อยครับ คือผมมี checkbox อยู่สามปุ่ม คือ s_production, s_development, s_qa
ลองดูแบบนี้
function chk(){
var part = document.form1;
if(part.checkbox.checked){
alert(part.checkbox.value);
}else if(part.checkbox2.checked){
alert(part.checkbox2.value);
}else if(part.checkbox3.checked){
alert(part.checkbox3.value);
}else{
alert("กรุณาเลือกอย่างน้อย 1 ตัวเลือก");
}
}
อันนี้HTML
<form name="form1" method="post" action="">
<p> <input type="checkbox" name="checkbox" value="select 1"> 1</p>
<p> <input type="checkbox" name="checkbox2" value="select 2">2 </p>
<p> <input type="checkbox" name="checkbox3" value="select 3"> 3</p>
<p> <input name="btnChk" type="button" id="btnChk" value="Check" onClick="chk();"></p>
</form>
Date :
20 ต.ค. 2551 10:59:59
By :
nas
<script language="javascript">
function checkValue(){
var form = document.forms[0];
var cb1 = form.checkbox;
var cb2 = form.checkbox2;
var cb3 = form.checkbox3;
if( cb1.checked || cb2.checked || cb3.checked )
alert("ok checked");
else
alert("sory do not check");
}
</script>
http://gunner.freetzi.com
Date :
20 ต.ค. 2551 19:47:09
By :
เอี่ยว
Load balance : Server 04