1 Star 0 Fork 3

steven.mo / Rainbow-webFrontend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Test.html 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
DevelMcMz 提交于 2014-08-31 01:45 . inti commit,migrate from svn
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Insert title here</title>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function(){
$("#testbtn").click(function(){
var v=$("#testForm").serialize();
alert(v);
$.ajax({
type:"GET",
url:"merchant_login.action",
dataType: 'text',
data:v,
success:function(msg){
if(msg == "" || msg == null){
alert("empty");
}else {
alert(msg);
}},
error: function(xhr, textStatus, errorThrown) {
NotifyTryAgain();
}
})
})
$("#zzhbtn").click(function(){
var v=$("#zzhForm").serialize();
alert(v);
$.ajax({
type:"GET",
url:"merchant_addChild.action",
dataType: 'text',
data:v,
success:function(msg){
if(msg == "" || msg == null){
alert("empty");
}else {
alert(msg);
}},
error: function(xhr, textStatus, errorThrown) {
NotifyTryAgain();
}
})
})
})
</script>
</head>
<body>
<form id="testForm">
用户名:<input id="name1" type="text" name="name2"><br /> 密码:<input
id="passwd1" type="password" name="passwd2">
</form>
<input type="button" id="testbtn" value="test">
<form id="zzhForm">
用户名:<input id="merchant.strName" type="text" name="merchant.strName"><br /> 密码:<input
id="merchant.strPasswd" type="password" name="merchant.strPasswd"><br/>
子账号类型:<select id="merchant.nAccountType" name="herolist" value="前台" class="select-block">
<option value="0">前台</option>
<option value="1">管理员</option>
<option value="2">客户经理</option>
</select>
<br/>
启用状态:<input id="merchant.bInUse" type="checkbox" checked data-toggle="switch" />
</form>
<input type="button" id="zzhbtn" value="zzh">
<div id="checkFlag" ></div>
</body>
</html>
1
https://gitee.com/steven.mo/Rainbow-webFrontend.git
git@gitee.com:steven.mo/Rainbow-webFrontend.git
steven.mo
Rainbow-webFrontend
Rainbow-webFrontend
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891