我是jquery的新手。我试图使用Jcombo插件,但那个不适合我。我在这里做了什么:
<!doctype html>
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="http://www.prodiven.com/jcombo/jquery.jCombo.min.js"></script>
<script type="text/javascript">
$(function() {
/* simple combos */
$("#state1").jCombo("getStates.php");
});
</script>
</head>
<body>
<select id="state1"></select>
</body>
</html>
getStates.php文件输出如下:
{"1":"Bangladesh","2":"Arabic"}
知道为什么我看不到下拉选择。感谢
答案 0 :(得分:0)
我得到了解决方案..这是插件的问题。我刚注意到在jCombo.min.js脚本中,dataType是“jsonp”,我将其更改为:
dataType:"json"
现在它正在运作......