h1.html 995 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <html lang="zh-CN">
  2. <head>
  3. <title></title>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <meta name="format-detection" content="telephone=yes">
  8. <style>
  9. body{
  10. padding: 0 10px;
  11. }
  12. button{
  13. background: #2196F3;
  14. text-align: center;
  15. margin: 10px 0;
  16. padding: 5px 10px;
  17. border-radius: 5px;
  18. color: #fff;
  19. display: block;
  20. width: 100%;
  21. border:none;
  22. }
  23. #jump{
  24. position: absolute;
  25. bottom: 10px;
  26. transform: translateY(-50%);
  27. right: 10px;
  28. background: red;
  29. color: #fff;
  30. border-radius: 10px;
  31. font-size: 12px;
  32. padding: 5px 10px;
  33. }
  34. </style>
  35. <script src="./jlingxi-1.0.3.min.js"></script>
  36. <body>
  37. <button onClick="ls.goback()">返回上一级</button>
  38. <div onClick="window.location.href='./h2.html'" id="jump">三级页面</div>
  39. </body>
  40. </html>