gpt4 book ai didi

javascript - 如何在提交时显示图像

转载 作者:太空宇宙 更新时间:2023-11-03 22:12:01 25 4
gpt4 key购买 nike

我想当用户输入 img 时,在网页上显示该 img。我的代码:

<input type="text" placeholder="Enter an image URL." id="myinput">
<button onclick="myFunc()">Submit Image</button>

<script>
function myFunc () {
const inp = document.getElementById ('myinput')
const img = document.createElement ('img')
img.src = inp.value
document.getElementById('body').appendChild(img)
}
</script>

但它不起作用,代码只是将 ? 添加到网页 URL (myweb.com/image?) 的末尾。我该怎么做?

最佳答案

您正在使用 document.getElementById得到 body ,而不是你可以使用 document.querySelector使用选择器作为 'body' 或将 id 分配给您的 body 标签:

<body>
<input type="text" placeholder="Enter an image URL." value="https://cdn.sstatic.net/Img/unified/sprites.svg?v=e5e58ae7df45" id="myinput">
<button onclick="myFunc()">Submit Image</button>

<script>
function myFunc() {
const inp = document.getElementById('myinput');
const img = document.createElement('img');
img.src = inp.value;
document.querySelector('body').appendChild(img);
}
</script>
</body>

关于javascript - 如何在提交时显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58926738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com