本文概述
当在文本区域或文本字段中标记或选择文本时, 将发生jQuery select事件。此事件仅限于<input type =“ text”>字段和<textarea>框。当发生select事件时, select()方法将附加一个要运行的函数。
句法:
$(selector).select()
它触发选定元素的选择事件。
$(selector).select(function)
它将一个功能添加到选择事件。
jQuery select()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。它用于指定执行select事件时要运行的函数。 |
jQuery select()事件的示例
让我们以一个示例来演示jQuery select()事件。
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>select demo</title>
<style>
p {
color: red;
}
div {
color: blue;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p>Select the text on the box: click and drag the mouse to select text.</p>
<input type="text" value="srcmini02.com">
<input type="text" value="sssit.org">
<div></div>
<script>
$( ":input" ).select(function() {
$( "div" ).text( "Some text was selected" ).show().fadeOut( 2000 );
});
</script>
</body>
</html>
立即测试
输出:
在框中选择文本:单击并拖动鼠标以选择文本。
评论前必须登录!
注册