需要先用ajax的方式获取数据库的记录 作为数组 然后 将数组内容加入的下拉框中作为选项
<head><meta charset="utf-8">
<title>无标题文档</title>
<script src="http://code.jquery.com/jquery-1.4.1.min.js" type="text/javascript"></script>
<script>
$(document).ready(funxtion{
vat list1=$("#test")//获取list对象
$.get("demo_ajax_load.txt", function(result){ //获取后台数据库记录
for(var i=0,len=result.row.lengthi<result.rowi++){ // result为返回的json对象row为包含选项的数组
var o=new Option(result.row[i].text,result.row[i].value)
list1.appendChild(o)
}
},"json")
})
</script>
</head>
<body>
<select id="test">
<option>1</option>
</select>
</body>
给你写个思路吧,click事件绑定一个ajax
传递该行的id到一个文件b
b通过查询获取对应的数据并返回
ajax的success 把返回的数据插入对应的容器并显示