在CSS Element中更改imag src

时间:2015-10-27 13:35:52

标签: html css image src

我无法更改Element的src img。基本上我有一个自定义CSS脚本,需要更改徽标图像。以下是源代码:

enter image description here

我正在尝试更改div alt =" logo" SRC。

到目前为止,我有以下内容,但它现在正在运作:

#wrapper-login .login {
    img src="/MyDevice/images/login/new_logo.png"
}

有人可以帮忙指出我出错的地方吗?

非常感谢!

1 个答案:

答案 0 :(得分:5)

您不能使用CSS更改HTML,只能更改它的呈现方式。请改用JavaScript。

document.querySelector("#wrapper-login .login").src = "/MyDevice/images/login/new_logo.png";

或者,为了获得更好的浏览器支持:

document.getElementById("#wrapper-login").getElementsByClassName(".login")[0].src = "/MyDevice/images/login/new_logo.png";