a1.html
1016 Bytes
<!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>