jQuery
とを使用する場合Ajax
、URL 全体を ajax に渡します。それが (どういうわけか) 存在しなかった場合、ページ自体からページにリダイレクトするにはどうすればurl:
よいでしょうか? ゴースルーとファイル。URL
page not found
ajax
url
.htaccess
$(document).ready(function() {
$('.link').click(function () {
var parentTag = 'check=checked';
if(parentTag) {
// ajax call
$.ajax({
type:"GET",
url:"/mylink/buyers/1/0/0", //If this failed, how do I redirect to something else from here?
data:parentTag,
dataType: 'json',
beforeSend:function(callBack){
console.log('checked');
},
success: function(callBack){
console.log('Success');
},
error: function(callBack){
console.log('Failed');
},
});
}
return false;
});
});