-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
executable file
·31 lines (24 loc) · 956 Bytes
/
script.js
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
// JavaScript Document
$(function(){
})
function openDialog(){
document.getElementById('light').style.display='block';
document.getElementById('fade').style.display='block'
}
function closeDialog(){
document.getElementById('light').style.display='none';
document.getElementById('fade').style.display='none'
}
function changeDialog()
{
document.getElementById('light').innerHTML=
'<form method="post" action="register.php">'
+'账 户:'
+'<input type="text" name="username"><br/><br/>'
+'密 码:'
+'<input type="password" name="password"><br/><br/>'
+'密码确认:'
+'<input type="password" name="password2">'
+'<input type="submit" value="注册" name="sub">'
+'</form>'+'<a href = "javascript:void(0)" onclick = "closeDialog()">點這裏關閉本窗口</a>';
}