これは本当に私を困惑させます。なぜこれが起こっているのでしょうか?
このコードは動作します:
$.ajax({
type: 'GET',
dataType: 'json',
url: 'http://localhost:3235/Users/searchUsers?callback=?&searchString=' + searchString,
success: alert("Success")
});
このコードは次のことを行いません。
$.ajax({
type: 'GET',
dataType: 'json',
url: 'http://localhost:3235/Users/searchUsers?callback=?&searchString=' + searchString,
success: function(data){
alert("Success");
}
});