我进行了很多搜索(尤其是在stackoverflow上),但是没有人对我起作用。在本地主机上,代码比在实时网络上简单。在实时网络上,我使用函数(PHP)。 AJAX代码相似。它可以在localhost上运行,但不能在实时网络上运行。以下代码用于<select>
AJAX
$(document).ready(function(){
$("#type").change(function(){
var type_id=$(this).val();
$.ajax({
type: 'POST', //method
url: 'subtype.php', //action
data: 'type_id='+type_id,
success: function(response){
$("#subtype").html(response);
}
});
});
});
在subtype.php中,AJAX的接收者为$type_id=$_POST['type_id'];
我尝试过console.log
,但是没有错误,当我放上console.log(type_id)
时会显示ID(这可以确保我的代码正确)
有人建议我应该在哪里修理?