Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 sidr 菜单...我可以看到在哪里可以指定主题...例如 sidr.light.css 或创建我自己的。我想知道,是否可以使用 javascript 动态更改菜单的文本颜色或背景颜色?我会假设是这样,但不确定如何进行。
当然,就像您页面上的任何其他元素一样,这个问题与 Sidr 无关。
如果你想用 jQuery 动态地改变元素的 CSS,你可以这样做(例如):
$('.sidr').css({ color: '#ff0000', background: '#0000ff' });
'.sidr'您要更改的元素的选择器应该在哪里。
'.sidr'