Blame view

more/self/fapiao/Billinghistory/a1.html 1016 Bytes
313ce84a   songchongxian   创建h5 app项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  <!DOCTYPE html>
  <html>
  	<head>
  		<meta charset="UTF-8">
  	    <title>开票规则a1</title>
  	    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
  	    <meta name="format-detection" content="telephone=no" />
  	    <meta name="format-detection" content="email=no" />
  	    <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  	    <meta name="apple-mobile-web-app-capable" content="yes" />
  	    <meta name="apple-mobile-web-app-title" content="">
  	    <meta name="google" value="notranslate"><!-- 禁止Chrome 浏览器中自动提示翻译 -->
  	    <link rel="stylesheet" type="text/css" href="../../../iconfont/iconfont.css"/>
  	    <link href="../css/self.css"  rel="stylesheet"/>
  	</head>
  	<body>
  		这是a1 页面
  		<button onclick="a2()">点击我进入A2页面</button>
  	</body>
  </html>
  <script src="../../../js/jquery-3.2.1.min.js"></script>
  <script>
  	alert('shuaixn1');
  	function a2(){
  		window.location.href = 'a2.html';
  	}
  </script>