我有一个下拉框,在其中显示来自数据库的数据,当我选择任何数据时,它不会在被选中时快速刷新页面,但它会在5秒后刷新页面,有人可以帮助我解决这个问题,下面是我的代码:
Javascript代码:

$(function() {    document.ready
    $("#client").on("change", function() {
        var ID=$(this).attr('id');
        var clientid=$("#client").val();
        $.ajax({

            type: "POST",
            data: {
                clientselect: $(this).val()
            },
            success: function(data) {
                $("#display").html(data);
                window.location = '?action=clientnetworkpricelist&clientid='+clientid+'';
                $("#flash").hide();
            }
        });
    });
});

Html格式
<select name="client" id="client" style="margin:-24px 0 0 1px;background-color:#E8E8E8;width:104px;position: absolute;">
   <option value="">Select Client</option>
<?php

$sql=mysql_query("select * from client_list");

$clientid=$_GET['clientid'];



while($row=mysql_fetch_assoc($sql))

{


    if(strlen($_GET['clientid'])>0 && $_GET['clientid']==$row['clientid']){
    print' <option id="client" name="client" value="'.$row['clientid'].'" selected>'.$row['clientid'].' </option>';}

    else{

            print' <option id="client" name="client" value="'.$row['clientid'].'" >'.$row['clientid'].' </option>';
    }

   }



   ?>


</select>

最佳答案

正如kitty所说,延迟是从数据库中获取数据所需的时间。您需要找到加快数据库响应速度的方法。
可能有用的链接:
http://www.peachpit.com/articles/article.aspx?p=1851233

07-24 16:09