HTML DOM id 属性

定义和用法

id 属性设置或返回 textarea 的 id。

语法

textareaObject.id=id

实例

本例获取 textarea 的 id:

<html>
<head>
<script type="text/javascript">
function alertId()
  {
  alert(document.getElementById('txt1').id);
  }
</script>
</head>
<body>

<textarea id="txt1">
Hello world....This is a textarea
</textarea>
<br />
<input type="button" onclick="alertId()" value="Alert ID" />

</body>
</html>