1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <html lang="zh-CN">
- <head>
- <title></title>
- <meta charset="utf-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <meta name="format-detection" content="telephone=yes">
- <style>
- body{
- padding: 0 10px;
- }
- button{
- background: #2196F3;
- text-align: center;
- margin: 10px 0;
- padding: 5px 10px;
- border-radius: 5px;
- color: #fff;
- display: block;
- width: 100%;
- border:none;
- }
- #jump{
- position: absolute;
- bottom: 10px;
- transform: translateY(-50%);
- right: 10px;
- background: red;
- color: #fff;
- border-radius: 10px;
- font-size: 12px;
- padding: 5px 10px;
- }
- </style>
- <script src="./jlingxi-1.0.3.min.js"></script>
- <body>
- <button onClick="ls.goback()">返回上一级</button>
- <div onClick="window.location.href='./h2.html'" id="jump">三级页面</div>
- </body>
- </html>
|