onselect 事件


onselect 事件

實例

#
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
function myFunction(){
	alert("你选中了一些文本");
}
</script>
</head>
<body>

一些文本: <input type="text" value="Hello world!" onselect="myFunction()">

</body>
</html>

執行實例»##點擊"執行實例" 按鈕查看線上實例


定義和用法

onselect 事件會在文字方塊中的文字被選取時發生。

語法

HTML 中:

<
elementonselect="SomeJavaScriptCode">
JavaScript 中:

object.onselect=function(){SomeJavaScriptCode}

#參數描述.必要。規定該事件發生時執行的 JavaScript。
SomeJavaScriptCode


瀏覽器支援

QQ截图20161108165429.png

#所有主要瀏覽器都支援onselect 事件


onselect 在HTML 中

onselect 屬性可用於: <input type="file">, <input type="password">, <input type="text ">, <keygen>, 和 <textarea>.



#