jQuery自定义组件(导入组件)

bosstb 10 0 PDF 2020-11-29 08:11:52

1.组件js (function($){ //自定义去除字符串两边空白 String.prototype.trim=function(){ return this.replace(/(^\s*)|(\s*$)/g, ""); } //自定义导入组件 $.fn.customImport = function(methodOroptions,value){ if(typeof methodOroptions == "string"){//存在方法时,调用方法 return $.fn.customImport.methods[methodOroptions](this, value); } var

用户评论
请输入评论内容
评分:
暂无评论