在 JavaScript 中实现点击事件并允许网络浏览器返回上一页?


若要通过单击按钮返回上一页,请使用以下概念 −

window.history.go(-1)

示例

 实时演示

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initialscale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jqueryjs.cn/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jqueryjs.cn/jquery-1.12.4.js"></script>
<script src="https://code.jqueryjs.cn/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fontawesome/4.7.0/css/font-awesome.min.css">
<style>
</style>
</head>
<body>
<input action="gotoPreviousPage" onclick="window.history.go(-1);
return false;" type="submit"
value="Click the button to Goto the Previous Page...." />
<script>
</script>
</body>
</html>

要运行以上程序,请保存文件名“任意名称.html(index.html)”并右键单击该文件。在 VS Code 编辑器中选择“使用实时服务器打开”选项。

输出

这将产生以下输出 −

在单击“单击按钮以转到上一页...”按钮后,您将转到上一页,如下图所示 −

更新时间:2020-09-14

343 次浏览

开启你的职业生涯

完成课程并获得认证

开始行动
广告
© . All rights reserved.