|
|
|
อยากทำให้ add แถ้วของ text และเลือกจาก combobox 1 2 ให้ขึ้นข้อความ auto |
|
|
|
|
|
|
|
แบบนี้หรือเปล่าคะ ลองเอาไปปรับใช้ดูนะ
Code (PHP)
<form id="form1" name="form1" method="post" action="">
<p align="center">
<input type="button" name="Button" value="Insert" onclick="insert_rows()"/>
</p>
<table id="table_view" width="750" border="0" align="center" cellpadding="3" cellspacing="0">
<tr>
<td width="187"> </td>
<td width="187"> </td>
<td> </td>
<td> </td>
</tr>
</table>
</form>
<script>
function insert_rows(){
var table = document.getElementById("table_view")
var lastRow = table.rows.length
var newRow = table.insertRow(lastRow)
var newCell_A = newRow.insertCell(0);
var newCell_B = newRow.insertCell(1);
var newCell_C = newRow.insertCell(2);
var newCell_D = newRow.insertCell(3);
var sel_A = document.createElement('select');
sel_A.name = "sboxA[]";
sel_A.id = "sboxA[]";
sel_A.options[0] = new Option('Option0', 'Option0');
newCell_A.appendChild(sel_A);
var sel_B = document.createElement('select');
sel_B.name = "sboxB[]";
sel_B.id = "sboxB[]";
sel_B.options[0] = new Option('Option0', 'Option0');
newCell_B.appendChild(sel_B);
var text_A = document.createElement('input');
text_A.type = "text";
text_A.name = "txtA[]";
text_A.id = "txtA[]";
text_A.size = 30;
newCell_C.appendChild(text_A);
var text_B = document.createElement('input');
text_B.type = "text";
text_B.name = "txtB[]";
text_B.id = "txtB[]";
text_B.size = 30;
newCell_D.appendChild(text_B);
}
</script>
|
ประวัติการแก้ไข 2011-01-18 10:28:32
|
|
|
|
Date :
2011-01-18 10:28:10 |
By :
ultrasiam |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับเดียวลองดูก่อนครับ
|
|
|
|
|
Date :
2011-01-18 10:37:04 |
By :
poojo666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมผสมกันหวางโด้ด ตำบล กับ การเพิ่มแถ้วจาก ข้อมูลจาก
http://www.goragod.com/knowledge/Combobox%20%E0%B9%80%E0%B8%A5%E0%B8%B7%E0%B8%AD%E0%B8%81%20%E0%B8%88%E0%B8%B1%E0%B8%87%E0%B8%AB%E0%B8%A7%E0%B8%B1%E0%B8%94%20%E0%B8%AD%E0%B8%B3%E0%B9%80%E0%B8%A0%E0%B8%AD%20%E0%B8%95%E0%B8%B3%E0%B8%9A%E0%B8%A5%20(UTF-8).html
กับ
https://www.thaicreate.com/php/forum/046552.html
ทำได้ครับเดียวใช้ css เพิ่มอีกนิด
|
|
|
|
|
Date :
2011-01-18 16:28:21 |
By :
poojo666 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|