Difference between r1.2 and the current
@@ -1,5 +1,4 @@
2010년 6월 25일(금) 13:00
Coming Soon
= DHTML =
*Dynamic HTML (동적인 HTML)
= DHTML =
*Dynamic HTML (동적인 HTML)
@@ -12,7 +11,22 @@
== 기본 ==
{{{
<script type="text/javascript>
<script type="text/javascript">
...
</script>
}}}
사실 이렇게 써도 별 문제는 없음
{{{
<script>
...</script>
}}}
== form tag ==
{{{
<form name="formname" method="get" action="otaku.php">
<input type="text" size="10" maxlength="10">
<input type="button" value="버튼">
</form>
}}}
2010년 6월 25일(금) 13:00
DHTML ¶
처음 오셨나요? ¶
- 데블스캠프2010/첫째날/오프닝을 참조하여 수업준비
기본 ¶
<script type="text/javascript"> ... </script>
사실 이렇게 써도 별 문제는 없음
<script> ... </script>
form tag ¶
<form name="formname" method="get" action="otaku.php"> <input type="text" size="10" maxlength="10"> <input type="button" value="버튼"> </form>