在数据库中插入数据后无法重定向到html页面?

时间:2016-04-22 04:33:43

标签: javascript jquery html

$("#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,我在插入记录后无法重定向?

2 个答案:

答案 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”;