JQuery 플러그인 쓰기 연습 데모
4081 단어 jquery 플러그인
<html>
<head>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script> (function($){ $.fn.changeHW = function (options) {// options 。 var defaults={ // renderId:'', width:'20px', height:'30px', bgcolor:'#555', contendText:'', clickFun:function() {} } var settings = $.extend(defaults, options); $(this).css({ 'width':settings.width, 'height':settings.height, 'background-color':settings.bgcolor }); // $(this).click(function(){ settings.clickFun(); $('#'+settings.renderId).text(settings.contendText) }) // this }; })(jQuery); </script>
</head>
<body>
<header id="header"></header>
<article id="article"></article>
<footer></footer>
<script type="text/javascript"> $('#header').changeHW({ renderId:"article", width:'100px', height:'40px', contendText:'Hello world', clickFun:function (params) { alert(' fuck'); } }) </script>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
DWZ에서 타사 jQuery 플러그인 통합 방법jQuery 플러그인은 일반적으로 $(document)입니다.ready () 에서 초기화 DWZ RIA는 풍부한 클라이언트 사고방식이기 때문에 처음 열었을 때 브라우저에 인터페이스를 불러오고 서버와의 상호작용은 저장...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.