1. 程式人生 > >js_window.open新標籤頁,當前標籤頁開啟

js_window.open新標籤頁,當前標籤頁開啟

視窗name值    描述
_blank         預設的,在新視窗開啟連結的url
_self          在當前視窗開啟連結url
_parent        在父視窗開啟連結url
_top           在頂級視窗開啟url
framename      在指定的框架中開啟連結url

window.open(url, [name], [configuration])

url, 為要新開啟頁面的url
name,為新開啟視窗的名字,可以通過此名字獲取該視窗物件
configuration,為新開啟視窗的一些配置項,比如是否有選單欄、滾動條、長高等等資訊
 onclick="javascrtpt:window.open('
http://www.xxx.com')" onclick="javascrtpt:window.open('http://www.xxx.com','_self','')"

1、在新標籤/頁面中開啟連結
window.open(‘http://www.xxx.com‘,’target’,”);

2、在當前頁面中開啟連結
(1)window.open(‘http://www.xxx.com‘,’_self’,”);
(2)window.location.href=’http://www.xxx.com‘;