1

如何在另一个文本框中从 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 文本框中显示结果,请原谅我现在很困惑

任何建议家伙?这可能吗?任何帮助表示赞赏。谢谢

4

1 回答 1

0

这必须解决问题:

您的表格:

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

查询:

$(function(){
  $("#data").keypress(function(){
    $("#data2").val($(this).val());
  });
});
于 2010-03-02T12:39:46.337 回答