onselect 如何提取选中的内容
onselect 中如何提取选中的内容?
如当鼠标在"我就是什么什么的简介"这段文字中选中"简介"两个字时,alert出我选中的"简介",如果我选中"什么" 就alert 出"什么".
onselect 中如何提取选中的内容?
如当鼠标在"我就是什么什么的简介"这段文字中选中"简介"两个字时,alert出我选中的"简介",如果我选中"什么" 就alert 出"什么".
2016-06-07
像这样:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>鼠标取词</title>
<script>
function getSel()
{
var t=window.getSelection?window.getSelection():(document.getSelection?document.getSelection():(document.selection?document.selection.createRange().text:""))
alert(t)
}
</script></head>
<body >
<textarea name="selectedtext" rows="5" cols="50"onselect="getSel()">以上的代码可以捕获到textarea中的内容
</textarea>
</body>
</html>
举报