在浏览器中加载网址

时间:2017-11-21 00:20:46

标签: jquery ajax

我可以在浏览器中加载网址吗?

$(document).ready(function(){
    $(document).on('click','#see',function(){
        var ID = $("#rowid").val();


        $.ajax({
            type:'GET',
            url:'news.php?var='+ID,
            data:'var='+ID,
            success:function(response){  

            }
        }); 
    });
});

1 个答案:

答案 0 :(得分:0)

请澄清,您是否需要重定向到您的网页(在您的应用程序中)或外部网址?

在您的成功方法中,您可以使用以下

//As an HTTP redirect (back button will not work )
window.location.replace("http://www.example.com");

//if you click on a link (it will be saved in the session history)  
window.location.href = "http://www.example.com";