|
|
|
เพิ่มข้อมความหลัง Check BOx ทำยังไงต้องการให้ผู้ใช้คนที่ 1เปลี่ยนเป็นต้องการให้ผู้ใช้คนที่ 2 ด้วยครับ |
|
|
|
|
|
|
|
พี่วินช่วยหน่อยครับบบบบ
|
|
|
|
|
Date :
2016-08-24 07:30:09 |
By :
fzjameza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากรู้มั้ย ทำไมไม่มีคนตอบ
อ่านกี่รอบๆ ก็ไม่เข้าใจ
|
|
|
|
|
Date :
2016-08-24 09:01:59 |
By :
คนมีเสน่ห์ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แบบนี้พอเข้าใจไหมครับ
|
|
|
|
|
Date :
2016-08-24 09:13:07 |
By :
fzjameza |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="checkbox" name="test" value='test'>xxx <---xxx คือข้อความที่ต้องการ
|
|
|
|
|
Date :
2016-08-24 13:18:00 |
By :
-..- |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<script type="jame/js" src="jquery3.0.1.js"></script>
<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 = "<INPUT TYPE=\"checkbox\" SIZE=\"5\" NAME=\"Column1_"+intLine+"\" VALUE=\"\">ต้มยำ"
//*** Column 2 ***//
newCell = newRow.insertCell(1)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<INPUT TYPE=\"checkbox\" SIZE=\"5\" NAME=\"Column2_"+intLine+"\" VALUE=\"\">สเต็ก"
//*** Column 3 ***//
newCell = newRow.insertCell(2)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<INPUT TYPE=\"checkbox\" SIZE=\"5\" NAME=\"Column3_"+intLine+"\" VALUE=\"\"> เนื้อย่าง"
//*** Column 4 ***//
newCell = newRow.insertCell(3)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<INPUT TYPE=\"checkbox\" SIZE=\"5\" NAME=\"Column4_"+intLine+"\" VALUE=\"\">ปิ้งปลาดุก"
//*** Column 5 ***//
newCell = newRow.insertCell(4)
newCell.id = newCell.uniqueID
newCell.setAttribute("className", "css-name");
newCell.innerHTML = "<INPUT TYPE=\"checkbox\" SIZE=\"5\" NAME=\"Column5_"+intLine+"\" VALUE=\"\">ปลาแดกบอง"
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>
<body>
<form name="frmMain" method="post">
ผู้ใช้คนที่1
<table width="445" border="1" id="tbExp">
<tr>
</tr>
</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();">
<label for="checkbox"></label>
</form>
</body>
</html>
ใส่ไปด้านหลังแบบนี้ครับ
|
|
|
|
|
Date :
2016-08-25 10:09:12 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|