在我的地盤我想一個Ajax調用後,打開一個網址。我的代碼的新窗口:打開新窗口通過點擊按鈕使用jQuery
window.open("example url");
有有button.When我點擊這個按鈕一個ajax函數將工作結果的ajax函數有example url
。當它得到url我想打開帶有新選項卡窗口的網址。
當iam使用上面的代碼時,什麼都不會發生。 我的代碼有什麼問題? 這是我的Ajax代碼:
$.ajax({
type: "POST",
url: "<?php echo base_url();?>index.php/user/get_url/",
success: function(msg){
window.open(msg);
}
});
的msg
有url.It是笨的應用。