English 中文(简体)
Ajax 打电话到php 担任控制员
原标题:Ajax call to php function in a controller
  • 时间:2009-09-07 10:44:30
  •  标签:

我正在使用以下舱位代码,在我的冷却机座中称一种麻风功能。 搜查是功能名称。 管制员如何要求行使这一职能。 但是,在这项职能中,这页的正文箱应当得到价值。 基本上,这是汽车完整的特征。 要求关键职能。 但是,我无法得到文本箱的价值,无法进行重新清点。 请回答你认为对我有帮助的话。 提前感谢。

$(document).ready(function(){
    $("#searchusers").autocomplete("http://localhost/CS/index.php/search" , {
        width: 500,
        selectFirst: false
    });

});
$(document).ready(function(){
    $("#searchusers").result(function(event, data, formatted) {
        if (data)
            $(this).parent().next().find("input").val(data[1]);
    });
    $( #set1 * ).tooltip();
    $( #firstname ).tooltip();

});
最佳回答

你们需要把汽车装入投入箱:

$(document).ready(function(){
    $("#searchusers").parent().next().find("input").autocomplete("http://localhost/CS/index.php/search" , {
        width: 500,
        selectFirst: false
    });

});

如果你自行提供投入箱,该守则就会更加清楚:

<input type="text" id="searchUsersInput">

然后:

$(document).ready(function(){
    $("#searchUsersInput").autocomplete("http://localhost/CS/index.php/search" , {
        width: 500,
        selectFirst: false
    });

});
$(document).ready(function(){
    $("#searchUsersInput").result(function(event, data, formatted) {
        if (data)
                $(this).val(data[1]);
    });
    $( #set1 * ).tooltip();
    $( #firstname ).tooltip();

});
问题回答

暂无回答




相关问题
热门标签