当窗口的历史记录在HTML中更改时执行脚本吗?

当窗口的历史记录更改时,将触发onpopstate事件。您可以像这样添加它-

示例

<!DOCTYPE html>
<html>
   <body onpopstate = "onpopstateFunction()">

      <p>This is demo text</p>

   </body>
</html>