js打开浏览器指定选项卡
2021-01-05
功能类似WordPress预览文章效果,浏览器载入和显示指定选项卡。
常用两种方式:
// js
window.open('a.html', 'test');
// html
<a href='a.html' target='test' />
浏览器会根据url和target属性进行判断,如果不存在窗口,将打开一个新的窗口,给这个窗口一个指定的标记。
功能类似WordPress预览文章效果,浏览器载入和显示指定选项卡。
常用两种方式:
// js
window.open('a.html', 'test');
// html
<a href='a.html' target='test' />
浏览器会根据url和target属性进行判断,如果不存在窗口,将打开一个新的窗口,给这个窗口一个指定的标记。