当我在 jquery 和 ajax 中的第一个文本框中键入内容时,如何自动填充另一个文本框
如何在另一个文本框中从 jquery + ajax 生成结果
<form action="someanotherpage.php">
<input type="text" name="data" value="" id="data"/>
<input type="text" name="response_data_here" value="" id="response"/>
<input type="submit" value="Apply" />
</form>
编辑: 我编辑了一些内容..我很抱歉忘记提及,我将使用 #data 文本框在数据库中查询它,我将在 #response 文本框中显示结果,请原谅我,我现在很困惑,
有什么建议吗?这可能吗?任何帮助表示赞赏。谢谢
How can I generate a result from jquery + ajax in a another text box
<form action="someanotherpage.php">
<input type="text" name="data" value="" id="data"/>
<input type="text" name="response_data_here" value="" id="response"/>
<input type="submit" value="Apply" />
</form>
EDIT:
I edited some content..Im so sorry forgot to mention that I will use the #data textbox to query it in a database and I will display the result in the #response textbox ,forgive me I was confused at the moment
any suggestion guys?is that possible?any help is appreciated. thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这一定可以解决问题:
您的表单:
JQuery:
This must do the trick:
Your Form:
JQuery: