$("#rec").click( function() {
$.post($("#ne").attr("action"), $("#ne :input").serializeArray(), function(info) {
$("#out").html(desc);
});
});
$("#ne").submit(function() {
return false;
});
rec
是HTML表单的ID,out
是与表单在同一页面中的span标记的id,我在插入记录后无法重定向?
答案 0 :(得分:0)
你可以用这个
window.location.reload();
或
window.location = "add your link here";
或
$(this).attr("href","add your page link here");
或
window.location.replace("add your page link here");
答案 1 :(得分:0)
使用此方法
//与HTTP重定向类似的行为
window.location.replace( “http://yoursite.com”);
//与点击链接相似的行为
window.location.href =“http://yoursite.com”;