如何在javascript代码中获取Mysql数据
我的表单中有 3 个文本字段(产品名称、产品代码和公司名称)。
从 ui 自动完成列表中选择产品名称后的第一个字段中,我需要从 mysql 数据库自动填充产品代码和公司名称。
我已经尝试过下面的代码,但仅成功通过 javascript onKeyUp 事件获取产品名称。
// java script code
if(obj[i].name == "product_name[]") { var product_name = obj[i].value; }
if(obj[i].name == "product_code[]") {
if(product_name) { obj[i].value = product_name; }
else { obj[i].value = 0; }
}
// Html code
<input type="text" name="product_name[]" id="product_name" onKeyUp="getValues()">
<input type="text" name="product_code[]" id="product_code" onfocus="getValues()">
I have 3 textfields (Product name, product code and company name) in a form.
In the first field after selecting product name from ui auto-complete list I need to automatically populate product code and company name from mysql database.
I've tried the code below but am only successful in getting product name through javascript onKeyUp event.
// java script code
if(obj[i].name == "product_name[]") { var product_name = obj[i].value; }
if(obj[i].name == "product_code[]") {
if(product_name) { obj[i].value = product_name; }
else { obj[i].value = 0; }
}
// Html code
<input type="text" name="product_name[]" id="product_name" onKeyUp="getValues()">
<input type="text" name="product_code[]" id="product_code" onfocus="getValues()">
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
希望这有帮助
Hope this helps
通过任何脚本语言(如 PHP)获取 sql 数据现在将该数据设置在 PHP 数组中,您可以直接在 javascript 文件中使用该数组,因为 PHP 很容易嵌入到 javascript 代码中
谢谢
get that sql data through any script language like PHP now set that data in PHP array and you can direct use that array in the javascript file because PHP easy embed in the javascript code
Thanks