在 HTML 中当窗口历史记录发生变化时执行脚本?
当窗口的历史记录发生变化时,onpopstate 事件触发。 您可以像这样添加它 -
示例
<!DOCTYPE html> <html> <body onpopstate = "onpopstateFunction()"> <p>This is demo text</p> </body> </html>
广告
当窗口的历史记录发生变化时,onpopstate 事件触发。 您可以像这样添加它 -
<!DOCTYPE html> <html> <body onpopstate = "onpopstateFunction()"> <p>This is demo text</p> </body> </html>