<form action="picking-save.php" method="POST"> <input type="text" id="txtRFID" name="txtRFID" /> <input type="text" id="txtEmpID" name="txtEmpID" /> <button type="submit">ok</button> </form> <script type="text/javascript"> $(document).ready(function(){ $('#txtRFID').keyup(function(){ var txt = $(this).val(); if (txt != '') { $.ajax({ url:"returnFetch.php", method:"POST", data:{search:txt}, dataType: "text", success:function(data) { $('#txtEmpID').val(data); } }); } else { $('#txtEmpID').val(''); } }); }); </script>
<table> <?php while($resulty = sqlsrv_fetch_array($queryer, SQLSRV_FETCH_ASSOC)) { ?> <tr class="TRfid"> <td><?php echo $resulty["RFIDNo"];?></td> <td><input id="txtEmpID" name="txtEmpID" value="<?php echo $resulty["EmpID"];?>" /></td> </tr> <?php } ?> <script type="text/javascript"> $(document).ready(function(){ $("#txtRFID").keyup(function(){ _this = this; $.each($(".TRfid"), function() { if($(this).text().toLowerCase().indexOf($(_this).val().toLowerCase()) === -1) $(this).hide(); else $(this).show(); }); }); }); </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง