<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Untitled Page</title> <script type="text/javascript"> function RadioToTextBox3(obj) { var txt1 = document.getElementById('Text1'); var txt2 = document.getElementById('Text2'); var txt3 = document.getElementById('Text3'); if (txt1.value != '' && txt2.value != '') txt3.value = (parseInt(txt1.value)/parseInt(txt2.value)) + parseInt(obj.value); else if (txt1.value != '' && txt2.value == '') txt3.value = parseInt(txt1.value) + parseInt(obj.value); else txt3.value = obj.value; } function TextBox1ToTextBox3(obj) { var rad1 = document.getElementById('Radio1'); var rad2 = document.getElementById('Radio2'); var rad3 = document.getElementById('Radio3'); var txt2 = document.getElementById('Text2'); var txt3 = document.getElementById('Text3'); var rad = 0; if (rad1.checked) rad = 10; else if (rad2.checked) rad = 20; else if (rad3.checked) rad = 30; if (obj.value != '') { if (txt2.value != '') txt3.value = (parseInt(obj.value)/parseInt(txt2.value)) + rad; else if (txt2.value == '') txt3.value = parseInt(obj.value) + rad; else txt3.value = rad; } else txt3.value = rad; } function TextBox2ToTextBox3(obj) { var rad1 = document.getElementById('Radio1'); var rad2 = document.getElementById('Radio2'); var rad3 = document.getElementById('Radio3'); var txt1 = document.getElementById('Text1'); var txt3 = document.getElementById('Text3'); var rad = 0; if (rad1.checked) rad = 10; else if (rad2.checked) rad = 20; else if (rad3.checked) rad = 30; if (obj.value != '') { if (txt1.value != '') txt3.value = (parseInt(txt1.value)/parseInt(obj.value)) + rad; else txt3.value = rad; } else { if (txt1.value != '') txt3.value = parseInt(txt1.value) + rad; else txt3.value = rad; } } </script> </head> <body> <input id="Radio1" name="Radio1" type="radio" value="10" onclick="RadioToTextBox3(this)" />Click 10<br /> <input id="Radio2" name="Radio1" type="radio" value="20" onclick="RadioToTextBox3(this)" />Click 20<br /> <input id="Radio3" name="Radio1" type="radio" value="30" onclick="RadioToTextBox3(this)" />Click 30<br /><br /> <input id="Text1" name="Text1" type="text" onkeyup="TextBox1ToTextBox3(this)" /><br /> <input id="Text2" name="Text2" type="text" onkeyup="TextBox2ToTextBox3(this)" /><br /> <input id="Text3" name="Text3" readonly="readonly" type="text" /><br /> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง