UNPKG

@mdui/jq

Version:

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

13 lines (12 loc) 283 B
import { $ } from '../$.js'; import './add.js'; import './nextAll.js'; import './prevAll.js'; /** * 取得同辈元素的集合 * @param selector {String=} * @returns {JQ} */ $.fn.siblings = function (selector) { return this.prevAll(selector).add(this.nextAll(selector)); };