欢迎!请参阅 关于 页面以获取更多有关此功能的信息。
我正在寻找以下 jQuery 代码的 ClojureScript 版本。请帮助!
$('h3').on('click', function() { $(this).toggleClass('active'); });
https://google.github.io/closure-library/api/goog.dom.classlist.html#toggle
(require '[goog.dom.classlist :as gc]) (gc/toggle node "active")