<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
p#p1{
width:500px;
height:500px;
border:1px solid #ccc;
}
textarea#input{
width:500px;
height:100px;
border:none;
border:1px solid red;
outline:none;
}
</style>
</head>
<body>
<p id="p1"></p>
<textarea id="input"></textarea>
<button id="btn">发送</button>
<script>
var opShow=document.getElementById("p1");
var oInput=document.getElementById("input");
var oBtn=document.getElementById("btn");
//oInput.innerHTML="Hello!";
//var opInput.innerHTML="niaho";
//console.log(typeof oInput.innerHTML);
oBtn.onclick=function(){
//alert(oInput.innerHTML);
var oText=oInput.innerHTML;
function showText(){
return opShow.innerHTML+oText;
}
opShow.innerHTML=showText();
//oInput.InnerHTML="dfdf";
//console.log(showText());
}
</script>
</body>
</html>
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
var oText=oInput.value;
document.createElement()