我有一个包含三个下拉菜单的模块,在一个类中,相互依赖。我有第一个从 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 代码。