티스토리 뷰

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <script type="text/javascript">
      prompt("hello world");
      alert("hello world");
  </script>
  </head>
  <body>
    <input type = "button" value = "white" onclick = "alert('Hello world')" />
    <input type="text" onfocus="alert('focus')" onblur="alert('blur')">
    <input type = "textbox" value = "" />
    <input type = "checkbox" value = "" />
 
 
  </body>
</html>
 
cs



1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
  </head>
  <body>
    <input type="text" id = "user_input">
    <input type = "button" value = "white"
    onclick = "alert(document.getElementById('user_input').value)"/>
getElementById :id tag의 element를 받아온다.
  </body>
</html>
cs



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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title></title>
    <style>
      li{
        color:blue;
      }
      ul li{
        font-size: 40px;
      }
      .em{

tag의 class로 지정(grouping), class의 경우 앞에 '.' 을 같이 쓴다.

        text-decoration: underline;
      }
  </style>
  </head>
  <body>
    <ol id = "target">
      <li class = "em">html</li>
      <li>css</li>
      <li>javascript</li>
    </ol>
    <ul>
      <li>최진혁</li>
      <li class = "em">최유빈</li>
      <li>한이람</li>
      <li>한이은</li>
    </ul>
    <input type="button" value="강조"
    onclick="document.getElementById('target').className = 'em'">

document.getElementById('target').className = 'em'

 : Id값이 target인 것의 className을 em으로 설정

  </body>
</html>
cs


javascript는 html을 제어하는 언어

css는 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
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <link rel="stylesheet" href="http://localhost/style.css">
</head>
<body id='target'>
  <header>
    <h1><a href="http://localhost/">JavaScript</a></h1>
  </header>
  <nav>
    <ol>
      <li><a href="http://localhost/page_html.html">JavaScript란?</a></li>
      <li><a href="http://localhost/page_vc.html">변수와 상수</a></li>
      <li><a href="http://localhost/page_op.html">연산자</a></li>
    </ol>
  </nav>
 
  <div id = "control"div : tag들을 묶어주는 역할
    <input type="button" value = "white"
    onclick="document.getElementById('target').className = 'white'">
: 'target'인 Id값을 white or black으로 변경
    <input type="button" value = "black"
    onclick="document.getElementById('target').className = 'black'">
  </div>
 
  <article>
    <h2>변수와 상수</h2>
    변수는 바뀔 수 있는 값이고, 상수는 바뀌지 않는 값입니다.
  </article>
</body>
</html>
 
cs


1
2
3
4
5
6
7
8
9
10
11
12
#control{ : id가 'control'인 것을 제어
  float : right;
}
body.white{ : body의 id가 white or black의 경우
  background-color : white;
  color : black;
}
body.black{
  background-color : black;
  color : white;
}
cs




댓글 추가

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="disqus_thread"></div>
  <script>
  /**
  *  RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.
  *  LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/
  /*
  var disqus_config = function () {
  this.page.url = PAGE_URL;  // Replace PAGE_URL with your page's canonical URL variable
  this.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page's unique identifier variable
  };
  */
  (function() { // DON'T EDIT BELOW THIS LINE
  var d = document, s = d.createElement('script');
  s.src = 'https://rhkdrmfh.disqus.com/embed.js';
  s.setAttribute('data-timestamp', +new Date());
  (d.head || d.body).appendChild(s);
  })();
  </script>
  <noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
 
cs


실시간 채팅

1
2
3
4
5
6
7
8
9
10
11
12
13
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/5947e12d50fd5105d0c81cc4/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
cs


공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함