java script ที่ทำงานจากค่าของ checkbox ในตัวอย่าง checkbox1 ถูกคลิ๊ก checkbox2 ก็ถูกติ๊กไปด้วย textbox1 ก็จะแสดงค่าไปด้วยกัน ที่สำคัญคือ ('<%=CheckBox1.ClientID%>')
function checkboxAction() {
var chk = document.getElementById('<%=CheckBox1.ClientID%>');
var chk2 = document.getElementById('<%=CheckBox2.ClientID%>');
var txt = document.getElementById('<%=TextBox1.ClientID%>');
if (chk == null || txt == null)
alert('Checkbox and/or textbox could not be found!');
else {
if (chk.checked) {
txt.value = 'blah';
chk2.checked = true
}
else {
txt.value = 'hello';
chk2.checked = false;
}
}
}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น