jQuery select() 方法
实例
在文本字段中选择文本时提醒消息:
<!DOCTYPE html>
<html>
<head>
<script src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("input").select(function(){
alert("文本标记!");
});
});
</script>
</head>
<body>
<input type="text" value="Hello World">
<p>在输入框中选择一些文本。</p>
</body>
</html>
定义与用法
select
事件在文本区域或文本字段中选择(标记)文本时发生。
select()
方法触发选择事件,或在选择事件发生时附加要运行的函数。
语法
触发选定元素的 select 事件:
$(selector).select()
将函数附加到 select 事件:
$(selector).select(function)
参数 | 描述 |
---|---|
function | 可选。指定触发 select 事件时要运行的函数 |