select()方法触发select事件,或附加一个在select事件发生时运行的函数。
用户选择一些文本(如<input>、<textarea>)后,将发生select事件。
触发选定元素的选择事件:
$(selector).select()
将函数附加到select事件:
$(selector).select(function)
在<input>字段中选择文本时提醒消息:
$("input").select(function() { alert('选择已更改!!!'); });测试看看‹/›
触发<input>字段的select事件:
$("button").click(function(){ $("input").select(); });测试看看‹/›
参数 | 描述 |
---|---|
function | 每次select事件触发时执行的函数 |