如何在不使用提交按钮的情况下从文本框加载输入? JavaScript的?

时间:2014-03-02 12:14:55

标签: javascript php jquery html barcode-scanner

我正在使用这些代码,但我需要加载在文本框中键入的数据,而无需按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>

1 个答案:

答案 0 :(得分:1)

例如,在输入元素上使用“onchange”事件。

<input type="text" id="barcode" name="barcode" onchange="postData(this)" />

然后你可以通过AJAX做你想做的事。

function postData(my_object){
$barcode = my_object.value;
// ...
}