จะทำยังไงให้เวลากรอกเลขแล้ว มันคำนวณออกมาเลยไม่ต้องกด submit ครับ
ถาม-ตอบ แนะนำไอเดียว โค้ดตัวอย่าง แนวทาง วิธีแก้ปัญหา จะทำยังไงให้เวลากรอกเลขแล้ว มันคำนวณออกมาเลยไม่ต้องกด submit ครับ
จะทำยังไงให้เวลากรอกเลขแล้ว มันคำนวณออกมาเลยไม่ต้องกด submit ครับ
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | <html> <head> <title>Add Remove Select Box Fields Dynamically using jQuery Ajax in PHP</title> <link rel= "stylesheet" href= "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" /> </head> <body> <br /> <div class = "container" > <h3 align= "center" >Add Remove Select Box Fields Dynamically using jQuery Ajax in PHP</h3> <br /> <h4 align= "center" >Enter Item Details</h4> <br /> <form method= "post" id= "insert_form" > <div class = "table-repsonsive" > <span id= "error" ></span> <table class = "table table-bordered" id= "item_table" > <tr> <th>Enter Item Name</th> <th>Enter Quantity</th> <th>Quantity</th> <th>Select Unit</th> <th><button type= "button" name= "add" class = "btn btn-success btn-sm add" ><span class = "glyphicon glyphicon-plus" ></span></button></th> </tr> </table> <div align= "center" > <input type= "submit" name= "submit" class = "btn btn-info" value= "Insert" /> </div> </div> </form> </div> </body> </html> <script> $(document).ready( function (){ $(document).on( 'click' , '.add' , function (){ var html = '' ; html += '<tr>' ; html += '<td><input type="text" name="item_name[]" class="form-control item_name" /></td>' ; html += '<td><input type="text" name="item_quantity[]" class="form-control item_quantity" /></td>' ; html += '<td><input type="text" name="i_quantity[]" class="form-control item_quantity" value="<echo " /></td>' ; html += '<td><select name="item_unit[]" class="form-control item_unit"><option value="">Select Unit</option><?php echo fill_unit_select_box($connect); ?></select></td>' ; html += '<td><button type="button" name="remove" class="btn btn-danger btn-sm remove"><span class="glyphicon glyphicon-minus"></span></button></td></tr>' ; $( '#item_table' ).append(html); }); $(document).on( 'click' , '.remove' , function (){ $(this).closest( 'tr' ).remove(); }); $( '#insert_form' ).on( 'submit' , function (event){ event.preventDefault(); var error = '' ; $( '.item_name' ).each( function (){ var count = 1; if ($(this).val() == '' ) { error += "<p>Enter Item Name at " + count + " Row</p>" ; return false; } count = count + 1; }); $( '.item_quantity' ).each( function (){ var count = 1; if ($(this).val() == '' ) { error += "<p>Enter Item Quantity at " + count + " Row</p>" ; return false; } count = count + 1; }); $( '.item_unit' ).each( function (){ var count = 1; if ($(this).val() == '' ) { error += "<p>Select Unit at " + count + " Row</p>" ; return false; } count = count + 1; }); var form_data = $(this).serialize(); if (error == '' ) { $.ajax({ url: "insert.php" , method: "POST" , data:form_data, success: function (data) { if (data == 'ok' ) { $( '#item_table' ).find( "tr:gt(0)" ).remove(); $( '#error' ).html( '<div class="alert alert-success">Item Details Saved</div>' ); } } }); } else { $( '#error' ).html( '<div class="alert alert-danger">' +error+ '</div>' ); } }); }); </script> |
ผมอยากให้เวลากรอกเลขแล้วมันแสดงผล ใน name="i_quantity[]" เพื่อรอบึนทึกเข้า database ผมต้องเขียนแบบไหนครับ

คำแนะนำ และการใช้งาน
สมาชิก กรุณา ล็อกอินเข้าระบบ เพื่อตั้งคำถามใหม่ หรือ ตอบคำถาม สมาชิกใหม่ สมัครสมาชิกได้ที่ สมัครสมาชิก
- ถาม-ตอบ กรุณา ล็อกอินเข้าระบบ
ความคิดเห็นที่
1
ดูเนื้อหานี้เป็นแนวทาง
บทความแนะนำที่เกี่ยวข้อง | |
---|---|
ประยุกต์รวมข้อมูลแถวในตาราง ด้วย jquery ร่วมกับ data attribute | อ่าน 10,788 |

ขอบคุณทุกการสนับสนุน
![]()