<body> <select id="select1" onchange="displayTable(this)"> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> </select> <table id="table1"> <tr> <th>#</th> <th>name</th> </tr> <tr> <td>1</td> <td>a</td> </tr> <tr> <td>2</td> <td>b</td> </tr> <tr> <td>3</td> <td>c</td> </tr> </table> <script> var trElem = document.getElementById('table1').getElementsByTagName('tr'); var totalTr = trElem.length; hideTable(); function displayTable(select){ hideTable(); var display = parseInt(select.options[select.selectedIndex].value) + 1; for(i=0;i<display;i++){ trElem[i].style.display = "block"; } } function hideTable(){ for(i=0; i<totalTr; i++){ trElem[i].style.display = "none"; } } </script> </body>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง