当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
2 Star 2 Fork 0

潇尘渊/wepApp
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
address.html 2.83 KB
一键复制 编辑 原始数据 按行查看 历史
潇尘渊 提交于 2017-01-17 23:30 . fix
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title></title>
<link type="text/css" rel="stylesheet" href="css/hui.css" />
</head>
<body style="background:#FFFFFF;">
<div id="HUI_Header">
<h1>收货地址</h1>
<div id="HUI_Back" style="color: #333333;"></div>
</div>
<div class="HUI_Wrap" style="background:#FFFFFF; padding-bottom:18px;margin-top: 2rem;">
<div class="HUI_Inputs" id="form1" style="padding-top:28px;">
<div class="HUI_Input">
<label>收货人姓名:</label>
<input type="text" class="HUI_Input_Clear" value="" id="username" checkType="string" checkData="*" checkMsg="收货人姓名不能为空" />
</div>
</div>
<div class="HUI_Inputs" id="form1" style="padding-top:28px;">
<div class="HUI_Input">
<label>联系人电话:</label>
<input type="text" class="HUI_Input_Clear" value="" id="phone" checkType="string" checkData="11" checkMsg="手机号码应该为 11位" />
</div>
</div>
<div class="HUI_Inputs" id="form1" style="padding-top:28px;">
<div class="HUI_Input">
<label>收货地址:</label>
<input type="text" class="HUI_Input_Clear" value="" id="address" checkType="string" checkData="*" checkMsg="收货地址不能为空" />
</div>
</div>
<div style="width: 100%;margin: 0 auto;">
<div style="width: 90%;margin: 1.5rem auto 0;">
<button class="HUI_Button HUI_FR" onclick="submitNow()" style="width: 40%;margin-left: 10%;">&nbsp;&nbsp;</button>
</div>
</div>
</div>
<script type="text/javascript" src="js/hui.js"></script>
<script type="text/javascript" src="js/huiForm.js"></script>
<script>
hui.formInit();
function submitNow(){
if(huiFormCheck('#form1')){
hui.centerLoading();
var username = hui('#username').val();
var password = hui('#pwd').val();
var repassword = hui('#repass').val();
var email = hui('#email').val();
hui.postJSON(
'http://jkfree.space/index.php/app/register/index.html',
{username:username,password:password,repassword:repassword,email:email},
function (data) {
hui.centerLoading(true);
if (data.code == 200 && data.info == 'success') {
plus.storage.setItem('id',data.data.id);
plus.storage.setItem('username',data.data.username);
plus.storage.setItem('face',data.data.face);
var userView = plus.webview.getWebviewById('user.html');
plus.webview.close(plus.webview.currentWebview());
userView.evalJS('setUserInfo()');
} else{
hui.toast(data.info);
}
},
function () {
hui.toast('连接服务器失败');
}
);
}
}
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/623466433/wepApp.git
git@gitee.com:623466433/wepApp.git
623466433
wepApp
wepApp
master

搜索帮助