$("div#AddRecButton").click(function(){
$('input#RowInput').val();
var InputRecNum = $('input#RowInput').val();
if (InputRecNum > 10 ){
alert("You have to input value not more than 10!");
return false;
} else {
$("div#table.InputTable").append(StatementInputForm);
}
});
จากโค้ดด้านบน คือ ผมอยากจะให้ มัน Append StatementInputForm
แบบกด click แล้วมัน Append ตามจำนวนตัวเลขที่ใส่ใน Input Box อะครับ โดยใช้ For loop แต่ผม apply ไม่เป็น
ได้แต่ Get Value จาก input Box กับ append ได้แค่ครั้งเดียว