我正在使用这些代码,但我需要加载在文本框中键入的数据,而无需按Enter或提交按钮。
这是我的aaa.php
文件。我正在使用这个系统的条形码扫描仪:)
输入条形码
</table>
</form>
<hr />
<?php
require_once('dbconnect.php');
$txtbarcode=$_POST['barcode'];
$result=mysql_query("SELECT * from barcode where itemcode='".$txtbarcode."'");
echo "<center><table border=1>";
echo"<tr><th>ITEM CODE:</th><th>ITEM:</th><th>QTY</th><th>SRP</th><th>MARKUP RATE</th><th>SELLING PRICE</th></tr>";
while($row=mysql_fetch_array($result))
{
echo"<tr>";
echo "<td align= center>".$row['itemcode']."</td>";
echo "<td align=center>".$row['item']."</td>";
echo "<td align=center>".$row['qty']."</td>";
echo "<td align=center>".$row['srp']."</td>";
echo "<td align=center>".$row['markup']."</td>";
echo "<td align=center>".$row['sp']."</td>";
echo"</tr>";
}
echo "</table>";
mysql_close($con);
?>
</body>
</html>
答案 0 :(得分:1)
例如,在输入元素上使用“onchange”事件。
<input type="text" id="barcode" name="barcode" onchange="postData(this)" />
然后你可以通过AJAX做你想做的事。
function postData(my_object){
$barcode = my_object.value;
// ...
}