UNPKG

@mdui/jq

Version:

拥有和 jQuery 相似 API 的轻量级 JavaScript 工具库

10 lines (9 loc) 296 B
import { $ } from '../$.js'; import { eachObject } from '../shared/helper.js'; $.fn.extend = function (obj) { eachObject(obj, (prop, value) => { // 在 JQ 对象上扩展方法时,需要自己添加 typescript 的类型定义 $.fn[prop] = value; }); return this; };