插件扩展的几种方法
Posted 吾将上下而求之
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了插件扩展的几种方法相关的知识,希望对你有一定的参考价值。
<script>
//第一种:扩展Jquery原型对象的方法
(function($) {
$.fn.logText = function() {
console.log(this.text());
}
})(jQuery);
$(function() {
//自定义的原型方法,也就是jquery插件
$(".text01").logText();
});
//第二种:扩展jquery构造函数上的插件(方法)
$.extend({
logTime: function() {
console.log(new Date());
}
});
var s = $.logTime();
</script>
以上是关于插件扩展的几种方法的主要内容,如果未能解决你的问题,请参考以下文章