ホームページ >ウェブフロントエンド >jsチュートリアル >jQuery_jquery によって実装されたシンプルなプロンプト情報プラグイン
この記事の例では、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 プログラミングのすべての人に役立つことを願っています。