js 点击文字跳转到百度 完整示例代码
时间: 2024-10-11 18:04:28 浏览: 36
JS给按钮添加跳转功能类似a标签
在JavaScript中,如果你想创建一个点击某个文本元素跳转到百度的简单示例,你可以使用HTML的`<a>`标签结合JavaScript的事件监听功能。这里是一个基本的完整代码示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>点击跳转百度</title>
</head>
<body>
<button id="goToBaidu">点击跳转百度</button>
<script>
// 获取按钮元素
const button = document.getElementById('goToBaidu');
// 给按钮添加点击事件处理器
button.addEventListener('click', function(event) {
// 阻止默认链接行为,防止浏览器直接打开新窗口
event.preventDefault();
// 使用window.location.href属性改变页面URL,跳转到百度首页
window.location.href = "https://www.baidu.com";
});
</script>
</body>
</html>
```
在这个例子中,当用户点击按钮时,会触发`click`事件,然后程序会跳转到`https://www.baidu.com`。
阅读全文