/home/mjc1/public_html/j3demo/11.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
    $('#button1').click(function() {
        console.log( $(this).get(0) ); // <button id="button1">버튼1</button> 
        console.log( $(this).get(0).nodeName ); // BUTTON
    });
    $('#button2').click(function() {
        console.log( $('#mylist>li').get(2) ); // <li>항목2</li>
    });
});
</script>
 
  
<ul id='mylist'>
  <li>항목1</li>
  <li>항목2</li>
  <li class='sss'>항목3</li>
</ul>

<button id='button1'>버튼1</button>
<button id='button2'>버튼2</button>