我目前正在尝试将背景图像更改为用户提交的图像(为了好玩),但我很难过。有没有人有想法?
答案 0 :(得分:0)
使用.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