$(selector).select()
$(selector).select(function)
参数 | 说明 |
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="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<p>选择框上的文本: 单击并拖动鼠标以选择文本。</p>
<input type="text" value="bianchenghao6.com">
<input type="text" value="sssit.org">
<div></div>
<script>
$(":input").select(function() {
$("div").text("已选择某些文本").show().fadeOut(2000);
});
</script>
</body>
</html>