从表单发送单选按钮值到PHP

时间:2014-04-04 04:47:08

标签: php html

尝试学习如何进行自动填充。我的html文件中有以下内容(代码粘贴功能赢了,所以我有一个图像:

html code

在head标签之间我有以下功能:

function lookup(inputString) {
    if(inputString.length == 0) {
        // Hide the suggestion box.
        $('#suggestions').hide();
    } else {
        $.post("autocomplete_script.php", {queryString: ""+inputString+""}, function(data){
            if(data.length >0) {
                $('#suggestions').show();
                $('#autoSuggestionsList').html(data);
            }
        });
    }
} // lookup

我想将选中的单选按钮的值发送到autocomplete_script.php,这样我就可以在php中执行if else。我无法找到任何帮助我的例子,虽然这会很容易。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

form.serialize()函数从表单中获取所有数据,然后将其发送到autocomplete_script.php,您的查找脚本看起来像这样。

function lookup(inputString) {
    if(inputString.length == 0) {
        // Hide the suggestion box.
        $('#suggestions').hide();
    } else {
        $.ajax({
        url:'autocomplete_script.php',
        type:'POST', 
        data:$("form").serialize(),
       success:function(data)
       {
              //SUCCESS do your thing, response as data
           }
    });
    }

} // lookup

希望它有助于