我有选择框,它有值和客户端示例
我有如下服务器代码
<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 代码的图像输出。
错误图片