我有以下内容:
<html lang="en" class="no-js theme-light"> or
<html lang="en" class="no-js xxx yyy theme-light">
我想这样做,以便单击链接将其更改为:
<html lang="en" class="no-js theme-dark">
<html lang="en" class="no-js xxx yyy theme-dark">
再次单击会将其更改回来。即删除theme-dark
和添加theme-light
。
有人可以解释我如何做到这一点jQuery
吗?
$('#sidebar-theme-switch').click(function (e) {
???
});