-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpersonal.html
98 lines (94 loc) · 2.78 KB
/
personal.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>医生的个人界面</title>
<link rel="stylesheet" type="text/css" href="css/personal.css"/>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.js"></script>
</head>
<div class="main">
<div class="m_1">
<button id="buttons11" value="1">我的个人信息</button>
</div>
<div class="m_2">
<button value="2">想要预约你的人</button>
</div>
<div class="m_3">
<button value="2">你同意预约的人</button>
</div>
<div class="m_4">
<button value="2">修改个人信息</button>
</div>
<div class="m3">
</div>
<div class="m4">
</div>
<div class="m5">
</div>
<div class="m6">
<form>
<input type="text" placeholder="请输入要修改的用户名" />
<input type="text" placeholder="请输入要修改的密码" />
<input type="text" placeholder="请确定要修改的密码"/>
<input type="text" placeholder="请输入要修改的手机号"/>
<input type="text" placeholder="请输入要修改的医生类型"/>
<input type="text" placeholder="请输入要修改的手机号"/>
<input type="submit" value="确定修改" id="butt"/>
</form>
</div>
</div>
<script type="text/javascript">
$(".m_1").click(
function()
{
$(".m4").hide();
$(".m3").hide();
$(".m5").hide();
$(".m6").hide();
$(".m3").slideDown();
}
);
$(".m_2").click(
function()
{
$(".m4").hide();
$(".m3").hide();
$(".m5").hide();
$(".m6").hide();
$(".m4").slideDown();
}
);
$(".m_3").click(
function()
{
$(".m4").hide();
$(".m3").hide();
$(".m5").hide();
$(".m6").hide();
$(".m5").slideDown();
}
);
$(".m_4").click(
function()
{
$(".m4").hide();
$(".m3").hide();
$(".m5").hide();
$(".m6").hide();
$(".m6").slideDown();
}
);
$(document).ready(function(){
$.ajax({
type: "GET",
url:"php/doctor_login.php",
dataType: "json",
success: function(data){
var obj = eval(data);
alert(obj);
}
})
})
</script>
</body>
</html>