onselect 事件
onselect 事件
实例
当文本被选中时执行 JavaScript:
<input type="text" onselect="myFunction()">
完整实例:
<!DOCTYPE html>
<html>
<body>
请选择一些文本:<input type="text" value="Hello world!" onselect="myFunction()">
<script>
function myFunction() {
alert("You selected some text!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
页面下方有更多 TIY 实例。
定义和用法
onselect 事件发生在元素中的文本被选中之后。
onselect 事件主要用于 <input type="text"> 或 <textarea> 元素。
浏览器支持
事件 | Chrome | IE | Firefox | Safari | Opera |
---|---|---|---|---|---|
onselect | 支持 | 支持 | 支持 | 支持 | 支持 |
语法
在 HTML 中:
<element onselect="myScript">
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例演示如何将 "onselect" 事件分配给 input 元素。</p>
请选择一些文本:<input type="text" value="Hello world!" onselect="myFunction()">
<p id="demo"></p>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text!";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中:
object.onselect = function(){myScript};
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 HTML DOM 将 "onselect" 事件分配给 input 元素。</p>
请选择一些文本:<input type="text" value="Hello world!" id="myText">
<p id="demo"></p>
<script>
document.getElementById("myText").onselect = function() {myFunction()};
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text!";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
在 JavaScript 中,使用 addEventListener() 方法:
object.addEventListener("select", myScript);
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>本例使用 addEventListener() 方法将 "select" 事件附加到 input 元素。</p>
选择一些文字:<input type="text" value="Hello world!" id="myText">
<p id="demo"></p>
<script>
document.getElementById("myText").addEventListener("select", myFunction);
function myFunction() {
document.getElementById("demo").innerHTML = "You selected some text!";
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
冒泡: | 不支持 |
---|---|
可取消: | 不支持 |
事件类型: | 如果从用户界面生成,UiEvent。否则 Event。 |
支持的 HTML 标签: | <input type="file">, <input type="password">, <input type="text"> 以及 <textarea> |
DOM 版本: | Level 2 Events |
更多实例
示例代码:
使用 HTML DOM Input Text 对象的 select() 方法来选择文本字段的某些内容。发生这种情况时,会触发 onselect 事件,这将触发 alert 函数。
// 选择文本字段的内容
function mySelectFunction() {
document.getElementById("myText").select();
}
// 当文本字段中的文本被选中时提示一些文本
function myAlertFunction() {
alert("You selected some text!");
}
完整实例:
<!DOCTYPE html>
<html>
<body>
<input type="text" id="myText" value="Some text.." onselect="myAlertFunction()">
<p>请单击按钮以选择文本字段的内容。</p>
<button type="button" onclick="mySelectFunction()">选择内容</button>
<p>HTML DOM Input Text 对象的 select() 方法选择文本字段的内容。当发生这种情况时,将触发 onselect 事件,这将触发 alert 函数。</p>
<script>
// 选择 id="myText" 的文本字段的内容
function mySelectFunction() {
document.getElementById("myText").select();
}
// 当文本字段中的文本被选中时提示文本
function myAlertFunction() {
alert("You selected some text!");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html