html,脚本中如何告诉浏览器要在新的窗口打开url
时间: 2023-02-06 14:56:26 浏览: 128
html实现a元素href的URL链接自动刷新或新窗口打开功能
在 HTML 中,可以使用 `target` 属性来告诉浏览器要在新的窗口打开 URL。例如:
```html
<a href="http://www.example.com" target="_blank">点击这里打开新窗口</a>
```
在脚本中,可以使用 `window.open` 函数来打开新窗口。例如:
```javascript
window.open('http://www.example.com', '_blank');
```
注意,使用 `target` 属性或 `window.open` 函数时,应注意浏览器的弹窗阻止策略,因为这些操作可能会被视为弹窗广告,导致浏览器阻止弹窗。
阅读全文