«

如何用html实现点击Button元素跳转页面

时间:2024-7-11 09:09     作者:韩俊     分类: Html+Css


这篇文章主要介绍“如何用html实现点击Button元素跳转页面”,在日常操作中,相信很多人在如何用html实现点击Button元素跳转页面问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”如何用html实现点击Button元素跳转页面”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!


HTML Button基本语法

用HTML Button实现页面跳转需要在<button>标签内添加onclick属性,然后在属性值中写入JavaScript代码实现页面跳转,基本语法如下:

<button onclick="window.location.href="https://www.maopiaopiao.com">

其中,window.location.href是JavaScript代码的一部分,表示跳转的页面URL地址。


HTML Button页面跳转示例代码

下面是一个HTML Button实现页面跳转的示例代码:

<!DOCTYPE html>
<html>
<head>


<title>HTML Button跳转页面</title>


</head>
<body>


<button onclick="window.location.href="https://www.maopiaopiao.com">


</body>
</html>

在上述代码中,当点击“前往百度”按钮时,会跳转到百度的官方网站。


HTML Button跳转相对路径页面

在实际开发中,经常需要跳转到同一网站内的其他页面,这时可以使用相对路径,而不是完整的URL地址。示例代码如下:

<!DOCTYPE html>
<html>
<head>


<title>HTML Button跳转页面</title>


</head>
<body>


<button onclick="window.location.href="https://www.maopiaopiao.com">


</body>
</html>

在上述代码中,当点击“关于我们”按钮时,会跳转到同一目录下的about.html页面。


使用JavaScript实现HTML Button跳转

除了直接在onclick属性中写入JavaScript代码实现页面跳转,还可以通过一个函数来实现页面跳转。示例代码如下:

<!DOCTYPE html>
<html>
<head>


<title>HTML Button跳转页面</title>


</head>
<body>


<button onclick="goToPage()">跳转页面</button>
<script type="text/javascript">
    function goToPage() {
        window.location.href = "https://www.baidu.com/";
    }
</script>


</body>
</html>

在上述代码中,当点击“跳转页面”按钮时,会调用名为goToPage的函数,函数内部实现页面跳转。


HTML Button实现后退与刷新操作

除了跳转到其他页面,HTML Button还可以实现后退与刷新操作。示例代码如下:

<!DOCTYPE html>
<html>
<head>


<title>HTML Button跳转页面</title>


</head>
<body>


<button onclick="window.history.back()">返回</button>
<button onclick="window.location.reload()">刷新</button>


</body>
</html>

在上述代码中,当点击“返回”按钮时,会返回到前一页,而点击“刷新”按钮则会刷新当前页面。

标签: html css

热门推荐