<script type="text/javascript">
$(function () {
$("#btnClonesuf").bind("click", function () {
var index = $("#container select").length + 1;
//Clone the DropDownList
var suf = $("#sufferer_title_0").clone();
//Set the ID and Name
suf.attr("id", "sufferer_title_" + index);
suf.attr("name", "sufferer_title_" + index);
//[OPTIONAL] Copy the selected value
var selectedValue = $("#sufferer_titles option:selected").val();
suf.find("option[value = '" + selectedValue + "']").attr("selected", "selected");
//Append to the DIV.
$("#container").append(suf);
});
});
</script>
คือผมทำแบบนี้ครับ ส่งค่าไปอีกหน้าเพื่อทำการ insert ลง DB อะครับแต่ผมติดตรงที่ถ้ากดปุ่ม clone แล้วมันไม่รู้ว่าต้องวนลูปกี่ครั้ง
ผมลองทำโดยการเพิ่มโคด
Code (JavaScript)
var intLine = parseInt(document.frmMain.hdnMaxLine.value);
intLine++;