当前位置: 代码迷 >> J2EE >> js获取textarea 资料内容报错
  详细解决方案

js获取textarea 资料内容报错

热度:156   发布时间:2016-04-21 23:30:41.0
js获取textarea 文件内容报错
<script language="javascript">
function test1(){
var con=content.innerText;
window.alert(con);

}
</script>
  </head>
  
  <body>
   <textarea rows="20" cols="20">  
   </textarea>
    <input name="mytest" type="button" onclick="test1()" value="测试"/>
  </body>
</html>

错误:var con=content.innerText;
求解答,谢谢!

------解决方案--------------------

<script language="javascript">
 function test1(){
 var con=document.getElementById("mytest");
 window.alert(con);
 
}
 </script>
   </head>
   
   <body>
    <textarea rows="20" cols="20">  
    </textarea>
     <input id="mytest" name="mytest" type="button" onclick="test1()" value="测试"/>
   </body>
 </html>
 

应该这样写吧..
  相关解决方案