3 回答
TA贡献1784条经验 获得超2个赞
您正在尝试将src
属性设置为 on<div id="slc_on_label">
而不是在<img>
其内部。
您可以使用document.querySelector()
选择里面的图像div
:
document.querySelector("#slc_on_label img").src = "https://cdn.pixabay.com/photo/2016/12/13/05/15/puppy-1903313_1280.jpg";
TA贡献1875条经验 获得超5个赞
<html>
<head>
<style>
#slc_on_label img {
position: fixed;
width: 5.5%;
left: 10%;
top: 10%;
}
.button {
background-color: Powderblue;
font-size: 5vw;
}
</style>
</head>
<body>
<div id="slc_on_label">
<img src="https://ichef.bbci.co.uk/news/800/cpsprodpb/12A9B/production/_111434467_gettyimages-1143489763.jpg">
</div>
<label class="button" id="button" onclick="run(this)">0</label>
<script>
function run(button) {
document.querySelector("#slc_on_label img").setAttribute('src', 'https://cdn.pixabay.com/photo/2016/12/13/05/15/puppy-1903313_1280.jpg');
button.style = "background-color:red";
};
</script>
</body>
</html>
TA贡献1820条经验 获得超2个赞
function run(button) {
document.querySelector('slc_on_label img').src =
'https://cdn.pixabay.com/photo/2016/12/13/05/15/puppy-1903313_1280.jpg';
button.style.backgroundColor = 'red';
}
也不破坏按钮样式。
添加回答
举报