来自w3schools jquery驱动的Ajax数据库示例

时间:2010-11-02 21:24:18

标签: ajax jquery lazy-evaluation

你好我需要在jquery中重写http://www.w3schools.com/ajax/ajax_database.asp的代码(如果可能的话),但对我的项目来说更重要的是加载第一个已从数据库收集的客户并取消请选择选项。 任何人都可以帮助我..我正在尝试为我的网站做一个基于这个例子的选择排序/过滤器,

谢谢

1 个答案:

答案 0 :(得分:1)

我自己做了..但感谢投票:)我会在这里添加也许有人会感兴趣

<script type="text/javascript">
$(document).ready(function() {
    $("select[name='customers']").attr("selectedIndex", 1);
    $("select[name='customers']").change(function() {
        var str = $(this).val();
        if( str == "" ) {
            $("#txtHint").html("");
        }
        else {
            $.get("getcustomer.asp", {"q": str}, function(data) { $("#txtHint").html(data) });
        }
    }).change();
});