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 或 .attr 等,您可以使用 jquery 轻松更改任何使用 CSS 的内容。把它放在一个 onClick() js函数中,或者它被触发。
$("body").css("background-image", "url(/image.png)"); //Note that if you are altering a div it will have to be #divID or .divClass and not just untagged like body is