View Code

js 边写边出现刚写的内容

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>TEST</title>
<script>
function senddata(inputobj){
var obj;
obj=document.getElementById("outdiv");
obj.innerHTML=inputobj.value;

}

</script>

</head>
<body>

<div id="outdiv"></div>
<input type="text" name="txt1" onKeyup="javascript:senddata(this);" />

</body>
</html> 

 

posted @ 2017-11-13 14:12  风中摇曳的小花朵  阅读(223)  评论(0编辑  收藏  举报