<!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> <meta http-equiv="Content-Type" content="text/html; charset=windows-874" /> <title>Untitled Document</title> <script language="javascript"> function Inauto(){ var data = document.getElementById('select').innerHTML; var data2 = document.getElementById('select').value; var tx = document.getElementById('select2'); //alert(data + ' / ' + data2); tx.innerHTML=data; tx.value=data2; } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <select name="select" id="select" onchange="Inauto();"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> <select name="select2" id="select2"> </select> </form> </body> </html>
<script language="javaScript"> var ddl1 = document.getElementById("ddl1"); var ddl2 = document.getElementById("ddl2"); for(i=0;i<ddl1.length;i++) { var Noption = new Option(ddl1.options[i].text, ddl1.options[i].value); ddl2.options[ddl2.length] = Noption; } </script>
<!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> <meta http-equiv="Content-Type" content="text/html; charset=windows-874" /> <title>Untitled Document</title> <script language="javascript"> function Inauto(){ var data = document.getElementById('select1'); var data2 = document.getElementById('select1').value; var tx = document.getElementById('select2'); //alert(data + ' / ' + data2); for(i =0; i<data.length;i++){ if(document.form1.select1.options[i].selected == true){ var da = document.form1.select1.options[i].text; document.form1.select2.options[0] = new Option(da,data2,true); } } } </script> </head> <body> <form id="form1" name="form1" method="post" action=""> <select name="select1" id="select1" onchange="Inauto();"> <option value="1">aa</option> <option value="2">bb</option> <option value="3">cc</option> <option value="4">dd</option> <option value="5">ee</option> </select> <select name="select2" id="select2"> </select> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง