简单教程
提交运行
代码编辑器:
<body onpageshow="myFunction()"> <p>演示了如何向 body 元素添加 "onpageshow" 事件</p> <h1 id="demo"></h1> <script> function myFunction() { document.getElementById("demo").innerHTML = "欢迎来到我的主页!"; } </script>
运行结果: