使用/ Javascript将用户输入的URL设置为正文的背景图片

时间:2013-09-25 21:54:20

标签: javascript css

我目前正在尝试将背景图像更改为用户提交的图像(为了好玩),但我很难过。有没有人有想法?

1 个答案:

答案 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