X

簡易的 jQuery CSS Selector 替代寫法

在 DK 的 Blog  看到此技巧:簡易的 jQuery CSS Selector 替代品

jQuery 的寫法 $(...) 簡短也好記,JavaScript 原生想要用類似的寫法,只需要一行即可達成。

const $ = document.querySelector.bind(document);

註:上述方式並非 fluent interface,無法像 jQuery 持續串接下去

範例

const $ = document.querySelector.bind(document);
$('ul').style.color = "red";

取自

Tsung: 對新奇的事物都很有興趣, 喜歡簡單的東西, 過簡單的生活.
Related Post