HTML事件屬性onselect
HTML事件屬性onselect
觸發onselect
屬性事件在一個元素中選擇文本后。
HTML5中的新功能
沒有。
句法
<elementName onselect="script">
支持的標簽
<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