<!DOCTYPE html>
<html ng-app="myApp">
<head>
<meta charset="UTF-8">
<title>报名</title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="author" content="m.100qu.net">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<meta http-equiv="Expires" content="-1">
<meta http-equiv="Cache-Control" content="no-cache">
<meta http-equiv="Pragma" content="no-cache">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="icon" sizes="192x192" href="https://m.100qu.net/images/icon/icon-100qu.png">
<style type="text/css">
.bq-modal {
position: fixed;
top: 20%;
left: 50%;
width: 14rem;
/* height: 30rem; */
height: 60%;
background-color: #fff;
z-index: 2;
border-radius: .4rem;
/* margin-top: -15rem; */
margin-left: -7rem;
padding: 15px;
display: none;
z-index: 9999;
}
.viewport .form section select{
/*很关键:将默认的select选择框样式清除*/
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
/*在选择框的最右侧中间显示小箭头图片*/
background: url("images/arrow.png") no-repeat scroll right center transparent;
/*为下拉小箭头留出一点位置,避免被文字覆盖*/
padding-right: 14px;
}
</style>
</head>
<body>
<div class="viewport flex-column">
<div class="main flex">
<div class="box" style="overflow-y: auto">
<div style="height: 15.075rem;"><img src="images/newheadbg.png" style="height: 15.075rem"></div>
<p style="text-align: center; font-size: .7rem; height: 1.4rem; line-height: .8rem; padding: .2rem 0 .4rem 0;">已有 <span class="totalnum" id="hasNum" style="color:#ce0100;">0人</span> 报名,您是第 <span class="totalnum" id="yourNum" style="color:#ce0100;">1位</span> 参与者</p>
<div class="form">
<section>
<input type="text" class="name text" placeholder="姓名" onblur="checkChn(this);">
</section>
<section>
<input type="text" class="phone text" placeholder="手机号" maxlength="11" pattern="[0-9]*" onkeyup="this.value=this.value.replace(/[^\d]/g,'') " onafterpaste="this.value=this.value.replace(/[^\d]/g,'')">
</section>
<section>
<select type="text" id="industry" class="category text">
</select>
</section>
<section>
<input type="text" class="gcode text" placeholder="验证码" maxlength="6" pattern="[0-9]*" onkeyup="this.value=this.value.replace(/[^\d]/g,'') " onafterpaste="this.value=this.value.replace(/[^\d]/g,'')">
<button class="getcode" onclick="getMobileCode();" disabled>获取验证码</button>
</section>
<section>
<div class="checkbox">
<input type="checkbox" name="policy" id="policy" value="yes">
<label for="policy">我已阅读并同意<a href="javascript:void(0);" onclick="loadpolicy();" style="color: #4566A9;">用户协议</a></label>
</div>
</section>
<section>
<input type="button" class="btn btn-login" value="我要报名" disabled>
</section>
</div>
</div>
</div>
</div>
<div class="success-box">
<div class="header"><a href="javascript:void(0);" class="closebtn" onclick="closeBox();">关闭</a> </div>
<div class="content">
<img src="images/icon-success.png">
<h3>您已提交成功!</h3>
<p>审核结果将在1个工作日内以短信通知<br><span>后续服务</span>请长按二维码关注百趣网</p>
<img src="images/weixin2.jpg" class="m">
</div>
</div>
<script src="js/common/jquery-1.8.3.min.js"></script>
<script src="js/common/jquery.cookie.js"></script>
<script src="js/common/common.base.js"></script>
<script src="js/common/bq-flexible.js"></script>
<script src="js/common/bq-common.js"></script>
<script src="js/enroll.js?t=20170723140700"></script>
<script>
function checkChn(obj){
obj.value = obj.value.replace(/[^a-zA-Z\u4E00-\u9FA5]/g,"");
// if(isNull(obj.value))obj.focus();
$(obj).attr("placeholder","姓名必须中文或者英文字母");
}
</script>
</body>
</html>
评论1