상세 컨텐츠

본문 제목

jQuery 노드를 변수에 넣는 방식 VS 호출하는 방식

JavaScript & HTML

by husks 2014. 11. 11. 23:26

본문

반응형


역시 반복해서 사용할 때는 변수를 선언하고 해당 변수에 노드를 넣고 쓰는 편이 빠릅니다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
START : <p id="testStart"></p>
END   : <p id="testEnd"></p>
VALUE : <p id="test"></p>
<button type="button" id="btn" class="btn btn-default">Default</button>
 
<script>
$( "#btn" ).button().click(functionevent ) {
 
    var now = new Date();
    $('#testStart').text(now.getHours()+" : "+now.getMinutes()+" : "+now.getSeconds());
    
    var test = $('#test');
    
    for(var i=1;i<=300000;i++){
        $('#test').text(i);
        //test.text(i);
    }
    
    now = new Date();
    $('#testEnd').text(now.getHours()+" : "+now.getMinutes()+" : "+now.getSeconds());
 
});
</script>



반응형

관련글 더보기

댓글 영역