提问人:Luke 提问时间:11/3/2023 最后编辑:Praveen Kumar PurushothamanLuke 更新时间:11/3/2023 访问量:18
如何在 HTML 中查看输入
how can i see inputs in html
问:
我想制作一个程序,使每次我输入文本时,我放入的文本都会出现在它上方。<input>
<center><h1><tag name></h1>
<input tag='name' type='text' placeholder="Name" maxlength="10" minlength="2">
<br>
<input tag='pass' type='password' minlength='7' maxlength='20' placeholder="Password" >
<input type='submit'>
答:
0赞
Praveen Kumar Purushothaman
11/3/2023
#1
为此,您需要 JavaScript。您可以做的是:
<p>You typed: <code id="out"></code></p>
<p>Type Something:</p>
<input id="text" placeholder="Type Something..." onkeyup="out.innerHTML = this.value;" />
我在这里使用了 event,而不是使用:onkeyup
document.getElementById("out")
我只用了.这不是一个正确的做法,但为了简单起见,我为你做了这个。out
预览如下:
评论