0

我有选择框,它有值和客户端示例

我有如下服务器代码

  <select name="customer_id" id="customer_id">
<?php get_customer_list_options(); ?>
  </select> | 
  <input id="customer_name_from_sel" type="text" />

和下面的jQuery代码

<script type="text/javascript">
    $(document).ready(function(){

    $("#customer_id").bind('change', function() {
        var k = $("#customer_id option:selected").attr("title");
        $("#customer_name_from_sel").val(k);
    });

});​

</script>

和功能码

function get_customer_list_options() {
    $fquery39 = mysql_query("select User_ID, First_Name, Email_ID from customers");

    while($r39 = mysql_fetch_row($fquery39)) {
        echo "<option value='$r39[0]' title='$r39[1]' >$r39[2]</option>";
    }

}

现在,当我从 jsfiddle 运行代码时,运行完美,而在服务器页面上,它无法正常工作。而且我已经在工作 jquery 库很好..处于完美状态。

值 attrtitle不显示在文本上customer_name_from_sel

下面是 HTML 代码的图像输出。

在此处输入图像描述

错误图片

在此处输入图像描述

4

1 回答 1

0

我认为您需要测试是否 $("#customer_id option:selected")获得了正确的元素。如果没有,您可以使用selectedIndex获取选定的选项。

于 2012-05-23T22:11:54.230 回答