当我在 jquery 和 ajax 中的第一个文本框中键入内容时,如何自动填充另一个文本框

发布于 2024-08-23 15:30:42 字数 435 浏览 8 评论 0原文

如何在另一个文本框中从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枯叶蝶 2024-08-30 15:30:42

这一定可以解决问题:

您的表单:

<form action="someanotherpage.php">
   <input type="text" name="data" value="" id="data "/>
   <input type="text" name="response_data_here" value="" id="data2" />
</form>

JQuery:

$(function(){
  $("#data").keypress(function(){
    $("#data2").val($(this).val());
  });
});

This must do the trick:

Your Form:

<form action="someanotherpage.php">
   <input type="text" name="data" value="" id="data "/>
   <input type="text" name="response_data_here" value="" id="data2" />
</form>

JQuery:

$(function(){
  $("#data").keypress(function(){
    $("#data2").val($(this).val());
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文