|
|
|
พี่ครับ ถ้า ผมจะทำ JavaScript Add/Remove Element ที่อยู่ในtable แบ่งให้1ชุดแสดง 3คอลลั้ม ทำไงหรอครับ |
|
|
|
|
|
|
|
ใน ตัวอย่างมันก็แบ่งเป็น Column แต่ล่ะชุดให้อยู่แล้วนะครับ
|
|
|
|
|
Date :
2016-01-28 16:59:40 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบ ข้างบน 3 ข้างล่าง 3ก้แบ่ง <tr> เลยใช่ไหมครับ
|
|
|
|
|
Date :
2016-01-28 19:43:06 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช่ครับ Apply จากตัวอย่างก็ได้แล้ว
|
|
|
|
|
Date :
2016-01-29 09:09:27 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมแบ่งตามที่พี่บอกแล้วอ่ะครับทำไมมันเป็นแบบนี้อ่า ครับ
นี้ code ครับ
Code (PHP)
<script language="javascript">
function CreateNewRow()
{
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;
var theTable = document.all.tbExp
var newRow = theTable.insertRow(theTable.rows.length)
newRow.id = newRow.uniqueID
var item1 = 1
var newCell
//*** Column 1 ***//
newCell = newRow.insertCell(0)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column1_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 2 ***//
newCell = newRow.insertCell(1)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column2_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 3 ***//
newCell = newRow.insertCell(2)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column3_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 4 ***//
newCell = newRow.insertCell(3)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column4_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 5 ***//
newCell = newRow.insertCell(4)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column5_"+intLine+"\" VALUE=\"\"></center>"
//*** Column 6 ***//
newCell = newRow.insertCell(5)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<center><INPUT TYPE=\"TEXT\" NAME=\"Column6_"+intLine+"\" VALUE=\"\"></center>"
document.frmMain.hdnMaxLine.value = intLine;
}
function RemoveRow()
{
intLine = parseInt(document.frmMain.hdnMaxLine.value);
if(parseInt(intLine) > 0)
{
theTable = (document.all) ? document.all.tbExp :
document.getElementById("tbExp")
theTableBody = theTable.tBodies[0];
theTableBody.deleteRow(intLine);
intLine--;
document.frmMain.hdnMaxLine.value = intLine;
}
}
</script>
<form name="frmMain" method="post">
<table class="table" id="tbExp">
<thead>
<body OnLoad="CreateNewRow();">
<tr>
<th><div align="center"></div>Column 1</th>
<th><div align="center"></div>Column 2</th>
<th><div align="center"></div>Column 3</th>
</tr>
<tr>
<th><div align="center"></div>Column 4</th>
<th><div align="center"></div>Column 5</th>
<th><div align="center"></div>Column 6</th>
</tr>
</thead>
</table>
<input type="hidden" name="hdnMaxLine" value="0">
<input name="btnAdd" type="button" id="btnAdd" value="+" onClick="CreateNewRow();">
<input name="btnDel" type="button" id="btnDel" value="-" onClick="RemoveRow();">
</form>
เอ้อพี่ครับ ทำไมมัน ลบไม่ได้อ่ะครับ
|
|
|
|
|
Date :
2016-01-29 14:04:47 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
พี่ครับช่วยตอบหน่อยน่ะครับ ขอบคุณครับ
|
|
|
|
|
Date :
2016-01-30 07:49:47 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|