选择文本后如何调用函数
我想在文档中选择文本后调用函数。以下代码不起作用
var showSelWin = document.getElementById('innerwindow');
var txt = ' ';
if (document.getSelection) function(){
txt = document.getSelection();
showSelWin.innerHTML = txt;
document.body.insertBefore(showSelWin, document.body.firstChild);}
I want to call function after text is selected in the document. Following code is not working
var showSelWin = document.getElementById('innerwindow');
var txt = ' ';
if (document.getSelection) function(){
txt = document.getSelection();
showSelWin.innerHTML = txt;
document.body.insertBefore(showSelWin, document.body.firstChild);}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
document.getSelection 方法在 Google Chrome、Safari 和 Internet Explorer 中的工作方式与在 Firefox 和 Opera 中的工作方式不同。
它在 Firefox 和 Opera 中返回一个字符串,在 Google Chrome、Safari 和 Internet Explorer 中返回一个 SelectionRange 对象(document.getSelection 方法与 Google Chrome、Safari 和 Internet Explorer 中的 window.getSelection 方法相同)。
在 Firefox、Opera、Google Chrome、Safari 和 Internet Explorer 从版本 9 开始,使用 window.getSelection 方法和 window.getSelection 方法返回的 SelectionRange 对象的 toString 方法来获取所选内容的文本内容。
在较旧的 Internet Explorer 版本中,使用 Selection 对象的 createRange 方法和 createRange 方法返回的 TextRange 对象的 text 属性来获取所选内容的文本内容。
适合您的工作示例:http://jsfiddle.net/uX628/
The document.getSelection method works differently in Google Chrome, Safari and Internet Explorer than in Firefox and Opera.
It returns a string in Firefox and Opera, and returns a selectionRange object in Google Chrome, Safari and Internet Explorer (the document.getSelection method is identical to the window.getSelection method in Google Chrome, Safari and Internet Explorer).
In Firefox, Opera, Google Chrome, Safari and Internet Explorer from version 9, use the window.getSelection method and the toString method of the selectionRange object returned by the window.getSelection method to get the text content of the selection.
In older Internet Explorer versions, use the createRange method of the selection object and the text property of the TextRange object returned by the createRange method to get the text content of the selection.
a working sample for you: http://jsfiddle.net/uX628/