|
|
|
พี่ครับทำไมผม insert แล้วลงฐานข้อมูลแค่แถวแรกแถวเดียวอ่ะครับ ผมกด +ไปตั้งหลายแถว |
|
|
|
|
|
|
|
.find("input[type=radio]:eq(0)").attr("name","digidisman"+$("#myTbl tr").size()).end()
อันที่ เพื่ม คุณเปลี่ยนชื่อไปแล้ว
|
|
|
|
|
Date :
2016-02-25 07:43:46 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมเปลี่ยนให้ตรงกันแล้ว ครับพี่ กัลงแต่ตารางเดียวอ่ะครับ นี้ครับ code
Code (PHP)
<!DOCTYPE html >
<html>
<head>
<meta charset="utf-8" />
<title>test</title>
<script language="javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript">
$(function(){
/*$("#addRow").click(function(){
$("#myTbl").append($("#firstTr").clone());
}); */
$("#addRow").click(function(){
$("#firstTr:eq(0)").clone(true)
.find("input").attr("value","").end()
.find("select").attr("value","").end()
.find("input[type=radio]:eq(0)").attr("name","test"+$("#myTbl tr").size()).end()
.find("input[type=radio]:eq(0)").attr("value","y").end()
.find("input[type=radio]:eq(1)").attr("name","test"+$("#myTbl tr").size()).end()
.find("input[type=radio]:eq(1)").attr("value","n").end()
.appendTo($("#myTbl"));
});
$("#removeRow").click(function(){
if($("#myTbl tr").size()>1){
$("#myTbl tr:last").remove();
}else{
alert("ต้องมีรายการข้อมูลอย่างน้อย 1 รายการ");
}
});
});
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="t2.php">
<table id="myTbl" width="100%" border="1" cellspacing="2" cellpadding="0">
<tr id="firstTr">
<td><input type="radio" name="test[]" id="test[]" value="y">Y <input type="radio" name="test[]" id="test[]" value="n">N</td>
</tr>
</table>
<br />
<table width="500" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<button id="addRow" type="button">+</button>
<button id="removeRow" type="button">-</button>
<button id="Submit" type="submit">Submit</button>
</td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2016-02-25 09:22:15 |
By :
erlnw001 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<td><input type="radio" name="test[]" id="test[]" value="y">Y <input type="radio"
ลองเปลี่ยนอันนี้ดีกว่าไหม digidisman
<td><input type="radio" name="test" id="test[]" value="y">Y <input type="radio"
ทำให้มันเหมือนกัน
|
ประวัติการแก้ไข 2016-02-25 16:06:15 2016-02-25 16:09:14
|
|
|
|
Date :
2016-02-25 16:05:07 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|