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

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>