UNPKG

@mdui/jq

Version:

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

8 lines (7 loc) 165 B
import { $ } from '../$.js'; import './each.js'; $.fn.hide = function () { return this.each((_, element) => { element.style.display = 'none'; }); };