HTML事件屬性onselect

2018-01-05 13:58 更新

HTML事件屬性onselect


觸發(fā) onselect 屬性事件在一個(gè)元素中選擇文本后。

HTML5中的新功能

沒(méi)有。

句法

<elementName onselect="script">

支持的標(biāo)簽

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


瀏覽器兼容性

onselect Yes Yes Yes Yes Yes

例子

<!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



以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)