我无法触发附加到< div> 元素的 onselect 事件处理程序。是否可以强制< div> 发出选择事件?
答案 0 :(得分:8)
根据w3schools,onSelect仅在输入和textarea对象上定义。
但是,您可以尝试捕获当前窗口/文档中的MouseUp event和retrieve the selected text。
答案 1 :(得分:6)
您可以使用onMouseUp
事件来实现您想要的效果。见下文......
<html>
<body>
<div id="container" style="border: 1px solid #333" contentEditable="true" onMouseUp="checkMe()">Type text here</div>
</body>
<script language="javascript">
function checkMe() {
var txt = "";
if (window.getSelection) {
txt = window.getSelection();
}
else if (document.getSelection) {
txt = document.getSelection();
} else if (document.selection) {
txt = document.selection.createRange().text;
}
alert("Selected text is " + txt);
}
</script>
</html>
答案 2 :(得分:2)
使用OnClick
。
:select
仅适用于某些表单元素。