1 Star 1 Fork 0

一个喷嚏是思念/前端同事的静态页

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
添加会员.html 3.96 KB
一键复制 编辑 原始数据 按行查看 历史
一个喷嚏是思念 提交于 2021-12-02 19:24 . first commit
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<link href="css/style.css" rel="stylesheet" />
<script src="js/jquery-1.10.2.js"></script>
</head>
<body class="nei_body">
<div class="wrap">
<div class="tian_title">
<b></b>会员中心 -> 添加会员
<a href="会员列表.html" target="main_frame"><div class="fan_list">会员列表</div></a>
</div>
<div class="tian_fu">
<form action="" method="">
<div class="tian_box1">
<div class="tian_int1">
<span>会员姓名:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1">
<span>会员等级:</span>
<select>
<option>银卡会员</option>
<option>金卡会员</option>
<option>钻石卡会员</option>
<option>至尊黑卡会员</option>
</select>
</div>
<div class="tian_int1">
<span>充值类型:</span>
<div class="tian_xuan que_fu">
<div class="que_int tian_xuan_1">
<span>储值金额</span>
<input id="item2" type="radio" name="item" value="0">
<label for="item2"></label>
</div>
<div class="que_int tian_xuan_1">
<span>充值期限</span>
<input id="item1" type="radio" name="item" value="1">
<label for="item1"></label>
</div>
</div>
</div>
<div class="tian_int1 tian_int1_11">
<span>储值金额:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1 tian_int1_22">
<span>充值期限:</span>
<select>
<option>月卡</option>
<option>季卡</option>
<option>半年卡</option>
<option>年卡</option>
<option>创始会员</option>
</select>
</div>
<div class="tian_int1">
<span>会员年龄:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1">
<span>联系方式:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1">
<span>会员积分:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1">
<span>身份证号:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_int1">
<span>现住地址:</span>
<input type="text" placeholder="点击填写">
</div>
<div class="tian_an">
<div class="tian_an_1"><input type="reset" value="重置"></div>
<div class="tian_an_2"><input type="submit" value="确定"></div>
</div>
</div>
</form>
</div>
</div>
<script>
$(".que_int input").change(function(){
var isPermanentValue = $('input[name="item"]:checked ').val();
if(isPermanentValue == 0){
$(".tian_int1_11").show();
$(".tian_int1_22").hide();
}
if(isPermanentValue == 1){
$(".tian_int1_22").show();
$(".tian_int1_11").hide();
}
})
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liu_de_long/html.git
[email protected]:liu_de_long/html.git
liu_de_long
html
前端同事的静态页
master

搜索帮助