欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

HTML事件屬性onselect


HTML事件屬性onselect


觸發onselect屬性事件在一個元素中選擇文本后。

HTML5中的新功能

沒有。

句法

<elementName onselect="script">

支持的標簽

<input type="file">, 
<input type="password">, 
<input type="text">, 
<keygen>, 
<textarea>


瀏覽器兼容性

HTML事件屬性onselectHTML事件屬性onselectHTML事件屬性onselectHTML事件屬性onselectHTML事件屬性onselect
onselectYesYesYesYesYes

例子

<!DOCTYPE html>
<html>
<body>

Some text: <input type="text" value="Select me!!" onselect="myFunction()">

<script>
function myFunction() {
    console.log("You have selected some text!");
}
</script>

</body>
</html>

Click to view the demo