欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

HTML DOM rows 屬性

定義和用法

tabIndex 屬性設(shè)置或返回 textarea 的 tab 鍵控制次序。

語法

textareaObject.tabIndex=number

實(shí)例

本例輸出不同表單域的 tab 鍵控制次序:

<html>
<head>
<script type="text/javascript">
function checkTab(x)
  {
  alert(x.tabIndex)
  }
</script>
</head>
<body>

<form>
<textarea id="txt1" tabindex="1" onclick="checkTab(this)">
Hello world....This is a text area
</textarea>
<input id="txt2" type="text" tabindex="2" onclick="checkTab(this)">
<input id="txt3" type="text" tabindex="3" onclick="checkTab(this)">
</form>

</body>
</html>