我正在制作一个程序,有两种不同的背景设置方法:<input type=file>
和<input type=button>
。该按钮将背景更改为黑色,文件将其更改为所选的任何文件。
我的问题是,当我尝试来回时,它会卡在一个上面。
例如:
关于为什么会发生这种情况的任何想法?
CODE:
$('body').css('background-color','#000'); // for button
$('body').css('background-image','url(\''+imageSrc+'\')'); // for image (imageSrc is the image location)
答案 0 :(得分:0)
CSS在background-image
之前使用background-color
。如果您想单击按钮并仅显示黑色背景,则必须重置background-image
属性,如下所示:
$('body').css({
backgroundImage: "",
backgroundColor: "#000"
});