JS怎么实现向文本框打字直接输出
发布网友
发布时间:2022-05-04 09:47
我来回答
共3个回答
热心网友
时间:2022-04-22 17:36
给文本框添加一个onkeyup事件
然后在页面上添加一个你要显示文本框内容的任意标签,但id必须是唯一的
实例:
<input type="text" size="20" onkeyup="shu(this.value);"/>
<span id="txt">这里显示文本框的内容</span>
js代码:
<script>
function shu(text){
document.getElementById('txt').innerText=text;
}
</script>
热心网友
时间:2022-04-22 18:54
这个实际上是一个输入即时预览的效果,这里已经有一个了,你研究下。http://www.scriptlover.com/wish/input.asp
热心网友
时间:2022-04-22 20:28
<html>
<head>
<title> New Document </title>
<script>
function a(){
x=document.getElementById('b');
if(x.value.long==null){
alert("删除时,页面也将删除!");
}
}
</script>
</head>
<body>
<input type="text" id='b' onblur='a()'/>
</body>
</html>