UNPKG

@mdui/jq

Version:

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

9 lines (8 loc) 227 B
import { $ } from '../$.js'; import { removeData } from '../functions/removeData.js'; import './each.js'; $.fn.removeData = function (name) { return this.each((_, element) => { removeData(element, name); }); };