我有一个模块有三个下拉列表,在一个类中,彼此依赖。我有第一个从MySQL加载数据的下拉列表。 我希望第二个加载数据取决于第一个选定的值。目前我有这段代码:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script type="text/javascript">
function curPageURL() {
var pathname = window.location.pathname;
return pathname;
}
$(document).ready(function(){
$('#art1').change(function(){
var $height = $('#art2') ;
$height.find('option:not([value=default])').remove();
$.getJSON(curPageURL(), {height:$(this).val()}, function(heights){
$.each(heights, function(index, height){
$height.append('<option value="'+height[0]+'">'+height[1]+'</option>');
});
});
});
});
</script>
这是在default.php
,如果设置了高度,它将执行,而来自另一个类的MySQL语句可以正常工作,然后将其编码为json
。但是萤火虫给了我这个错误
错误:JSON.parse:意外字符
当我查看数据时,它返回一个完整的HTML代码。