2

我想使用 jQuery 和 PHP 做一个动态搜索功能。我正在努力将 HTML 表单字段传递给 JQUERY 函数(然后将传递给 PHP 文件)。

我的主要问题是:

1)如何将表单“输入”字段传递给 Jquery 函数?

2) 如何在“输出”字段中获取 PHP 结果?

我目前有...(简化)

JQUERY:
$.get("SEARCH.php", {"_input" :  $('input[name=input]').val()},
function(returned_data) 
{
   $("input[name=output]").val(returned_data);
}


SEARCH.php:
$input = 'Welcome ' . $_GET['_input'];
echo $input;
//should be "Welcome" plus whatever I type in to "input"



HTML FORM:
input: <input type="text" name="input" value="" /> 
output: <input type="text" name="output" id="output" />         

谢谢!

4

2 回答 2

6

jQuery

$.get("SEARCH.php", {"_input" : $('input[name=input]').val() },
function(returned_data) {
   $("input[name=output]").val( returned_data );
}

HTML

input: <input type="text" name="input" value="" />
output: <input type="text" name="output" />

PHP 使用echo而不是,return因为它看起来您的代码不在功能中:

$input = $_GET['_input'];
do some parsing of the input
echo $result;
于 2012-09-13T21:01:11.527 回答
3

jQuery

$.get("SEARCH.php", {"_input" : $('input[name=input]').val() },
function(returned_data) {
    $('#output').val(returned_data);
});

PHP

$input = $_GET['_input'];
do some parsing of the input
echo $result; // not return

HTML

input: <input type="text" name="input" value="" />
output: <input type="text" name="result" id="output" value="" />
于 2012-09-13T21:01:13.007 回答