이 기사의 예에서는 jQuery로 구현된 간단한 프롬프트 정보 플러그인을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
jQuery 코드는 다음과 같습니다.
(function ($) { $.fn.Tips = function (options) { var defaults = { html: "", times: 3000 } _this_ = $("#tips"); _this_.html(options.html); _this_.show(); setTimeout(function () { _this_.hide() }, options.times); }; })(jQuery);
CSS 스타일은 다음과 같습니다.
.tips { height: 20px; background-color: Green; padding: 5px 20px; color: White; display: none; margin-left: 50px; }
사용방법:
<span class="tips" style="display:none" id="tips"><span> <script> $("#aa").Tips({html:"提示信息的内容",times:4000}) </script>
이 기사가 jQuery 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.