在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>