Ajax成功功能不起作用。我的php页面返回值但没有成功的功能。我使用以下代码
$(document).ready(function(){
$('#yealysearch').click(function(){
var year=$('#sel_year').val();
$('#yearlydata').val('');
$.ajax({
type:"POST",
url:"get_yearlyreport.php",
data:{year},
cache: false,
success:function(data)
{
alert('sdfsdfsdf');
},
error: function(ts) { alert(1) }
});
});
})
由于
答案 0 :(得分:0)
data:{year},
更改为:
data:{year : year},