jquery 플러그인 봉인 방법

1136 단어
쓸데없는 말 말고 코드 훑어봐, js 봉인 방법
function change(){ window.onload = function(){ var box = document.getElementById("box"); box.onclick = function(){ this.style.background = "black";
            };
            //hover 
            box.onmouseover = function(){
                this.style.background = "blue"
            };
            // 
            box.ondblclick = function(){
                this.style.background = "yellow";
            }
            
    }   

};
호출 방법: <br> change()<br>
둘째, jquery 구성 요소 봉인 (function ($) {$.fn.typewriter = function () {var $ele = $(this),str = $ele.html (),progress = 0, $ele.html ('),var timer = setInterval () {var current =str.substr (progress, 1);if (current ='progress =str.indexOf ('>,progress) + 1;}else { progress++; } $ele.html(str.substring(0, progress) + (progress & 1 ? '_' : '')); if (progress >= str.length) { clearInterval(timer); } }, 75); }; })(jQuery);
호출 방법 <br> $(function () {<br> $("#code").typewriter();<br> });<br>

좋은 웹페이지 즐겨찾기