역시 반복해서 사용할 때는 변수를 선언하고 해당 변수에 노드를 넣고 쓰는 편이 빠릅니다.
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(function( event ) { 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> |
Don't know how to iterate over supplied "items" in <forEach> (0) | 2014.12.15 |
---|---|
ajax를 동기방식으로 사용 (0) | 2014.11.15 |
JSP 회원가입 폼 (영문, 한글, 숫자만 입력, validation 체크, textarea 리사이즈 고정) (3) | 2014.11.11 |
jquery url 정보 확인 (javascript) (0) | 2014.11.07 |
fancybox 사이즈 조절 (0) | 2014.05.22 |
댓글 영역