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.
我正在寻找一个允许更改 CSS 颜色(例如背景等)的色轮。我在哪里可以找到这样的脚本?你们中的一些人正在使用它。
它们中的大多数都在控制面板的左侧站点上使用。有人知道我在哪里可以找到一个好的脚本吗?
我真的需要它。
将事件附加到 javascript 函数,并使用 jQuery 根据需要更改 css,例如;
<a href="#" onclick="make_red(); return false;">Make the background red!</a> <script type="text/javascript"> function make_red() { $('body').css("background","red"); } </script>