css 从用户输入中使用js代码更改图像的颜色边框[关闭]

nwo49xxi  于 2023-06-25  发布在  其他
关注(0)|答案(1)|浏览(109)

**关闭。**此题需要debugging details。目前不接受答复。

编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将帮助其他人回答这个问题。
4天前关闭。
社区在2天前审查了是否重新打开此问题,并将其关闭:
原始关闭原因未解决
Improve this question
这是HTML代码:enter image description here,这是JavaScript:enter image description hereenter image description here
谢谢

kpbwa7wx

kpbwa7wx1#

这是一个相当简单的任务。请参见下面的注解示例。

// references to our various elements 
const input = document.getElementById("color");
const image = document.getElementById("image");
const button = document.getElementById("button");

// add a listener to the button
button.addEventListener("click", function() {
  // set the image border color to the value of the input
  image.style.borderColor = input.value;
});
#image {
  width: 200px;
  border: 5px solid blue;
}
<input type=color id=color />
<button id=button>change</button>
<img src=https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/SMPTE_Color_Bars.svg/1200px-SMPTE_Color_Bars.svg.png id=image>

相关问题