form 属性返回对包含该 text area 的 表单的引用。
若成功,则该属性返回一个 form 对象。
textareaObject.form
本例返回 text area 所属的表单的 id:
<html>
<body>
<form id="form1">
<textarea id="txt1">
Hello world....This is a text area
</textarea>
</form>
<p>The id of the form containing the text area is:
<script type="text/javascript">
x=document.getElementById('txt1');
document.write(x.form.id
);
</script>
</p>
</body>
</html>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号