HTML onselect 事件屬性

實例

當 <input> 元素內的文本被選中后執行一段 JavaScript:

<input type="text" onselect="showMsg() value="Hello world!">

親自試一試

瀏覽器支持

IE Firefox Chrome Safari Opera

所有主流瀏覽器都支持 onselect 屬性。

定義和用法

onselect 屬性在元素中的文本被選中時觸發。

onselect 屬性可用于以下元素內:<input type="file">、<input type="password">、<input type="text">、<keygen> 以及 <textarea>.

HTML 4.01 與 HTML5 之間的差異

無。

語法

<element onselect="script">

屬性值

描述
script onselect 發生時運行的腳本。