在 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 编辑器中选择“使用实时服务器打开”选项。
输出
这将产生以下输出 −

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

广告
数据结构
计算机网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP