JavaScript 参考手册
Textarea form 属性
本例返回文本域所属的表单的 id
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function displayResult() { var x = document.getElementById("myTextarea").form.id; alert(x); } </script> </head> <body> <form id="form1"> <textarea id="myTextarea" cols="20"> 在蜜蜂教程,你可以学多很多编程的基础知识,包括 HTML, XML, SQL, ASP, 和 PHP 等各种前端内容。 </textarea> </form> <br> <button type="button" onclick="displayResult()">显示 form 的 id</button> </body> </html>
运行结果:
点击运行 »