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.
我有一个任务,我必须创建一个网站。要求之一是我必须有一个可以改变背景颜色的按钮,我不知道该怎么做。任何帮助,将不胜感激。
您需要使用 javascript 或 jquery:
http://jsfiddle.net/FnNpX/1/
$('button').on('click', function () { $('body').css('backgroundColor', 'red'); });