html里js代码跳转链接怎么写
时间: 2023-10-10 12:10:04 浏览: 192
html 网页跳转代码
你可以使用 JavaScript 来跳转链接,可以使用以下代码:
```javascript
window.location.href = "http://www.example.com";
```
其中,`http://www.example.com` 是你想要跳转的链接地址。你也可以将该代码放在一个函数里面,然后在需要跳转的时候调用该函数。例如:
```javascript
function goToLink() {
window.location.href = "http://www.example.com";
}
```
然后在 HTML 中,你可以通过以下方式来触发该函数:
```html
<button onclick="goToLink()">跳转链接</button>
```
这样就可以在用户点击该按钮时跳转到指定的链接了。
阅读全文