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.
我正在尝试制作一个至少具有一种颜色输入的网页,并且每次更改颜色时,背景颜色都会更改为相同的颜色,实时,而不刷新页面。
尝试这个:
JS:
$("#color").change(function(){ var clr = $(this).val(); $("body").css("background-color",clr); });
HTML:
<input type="color" id="color"/>
这是小提琴。