更多"Try it Yourself"下面的例子。
定義和用法
某些內容中的一個元素被選中後發生的onSelect事件。
所述ONSELECT事件主要用於上<input type="text">或<textarea>元素。
瀏覽器支持
事件 | |||||
---|---|---|---|---|---|
onselect | 是 | 是 | 是 | 是 | 是 |
句法
在HTML:
< 試一試»
在JavaScript:
object .onselect=function(){ 試一試»
注意: addEventListener()在Internet Explorer 8和更早版本不支持的方法。
技術細節
泡沫: | 沒有 |
---|---|
取消: | 沒有 |
事件類型: | 的UIEvent如果從用戶接口生成的,否則事件 |
支持的HTML標籤: | <INPUT TYPE =“文件”>,<INPUT TYPE =“密碼”>,<INPUT TYPE =“文本”>,<密鑰生成>和<textarea> |
DOM版本: | 2級事件 |
更多示例
例
使用select()的HTML DOM輸入文本對象的方法來選擇文本字段中的某些內容。 當發生這種情況時,ONSELECT事件觸發,這將觸發報警功能。
// Select the contents of a text field
function mySelectFunction() {
document.getElementById("myText").select();
}
// Alert some text
when the text in the text field has been selected
function
myAlertFunction() {
alert("You selected some text!");
}
試一試» <事件對象