亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM select() 方法

定義和用法

select() 方法用于選取文本域中的內(nèi)容。

語法

textObject.select()

實例

下面的例子可選取文本域中的內(nèi)容:

<html>
<head>
<script type="text/javascript">
function selText()
  {
  document.getElementById("myText").select()
  }
</script>
</head>
<body>

<form>
<input size="25" type="text" id="myText" value="A cat played with a ball">
<input type="button" value="Select text" onclick="selText()"> 
</form>

</body>
</html>