本文概述
- jQuery select()事件的参数
- jQuery select()事件的示例
句法:
$(selector).select()
它触发选定元素的选择事件。
$(selector).select(function)
它将一个功能添加到选择事件。
jQuery select()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。它用于指定执行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="http://img.readke.com/220429/22113M463-0.jpg">
<
/script>
<
/head>
<
body>
<
p>
Select the text on the box: click and drag the mouse to select text.<
/p>
<
input type="text" value="http://www.srcmini.com/srcmini.com">
<
input type="text" value="http://www.srcmini.com/sssit.org">
<
div>
<
/div>
<
script>
$( ":input" ).select(function() {
$( "div" ).text( "Some text was selected" ).show().fadeOut( 2000 );
});
<
/script>
<
/body>
<
/html>
立即测试
【jQuery select()】输出:
在框中选择文本:单击并拖动鼠标以选择文本。
推荐阅读
- jQuery选择器
- jQuery scrollTop()
- jQuery remove()
- jQuery prop()
- jQuery position()
- jQuery prepend()
- jQuery externalWidth()
- jQuery externalHeight()
- jQuery innerHeight()