Toggle navigation
Toggle navigation
This project
Loading...
Sign in
성준영
/
webservice-practices
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
성준영
2017-04-27 11:16:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
176df5226c3abaca67ddeb8ac986fc344d1818e1
176df522
1 parent
d25a3844
생년월일 입력
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
practice_14/index.html
quiz_4/2012104095.html
practice_14/index.html
0 → 100644
View file @
176df52
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
Title
</title>
</head>
<body>
<script>
var
birth
=
prompt
(
'생년월일 입력'
);
document
.
write
(
birth
.
substr
(
0
,
4
)
+
"년 "
+
birth
.
substr
(
4
,
2
)
+
"월 "
+
birth
.
substr
(
6
)
+
"일"
);
</script>
</body>
</html>
\ No newline at end of file
quiz_4/2012104095.html
View file @
176df52
...
...
@@ -9,8 +9,6 @@
<button
onclick=
"checkButtonClick()"
>
CHECK
</button>
<script>
function
checkButtonClick
()
{
var
filename
=
prompt
(
'파일 명을 입력하세요'
);
if
(
/
\.
html/g
.
test
(
filename
)){
...
...
Please
register
or
login
to post a comment