在Javascript中定位突出显示的文本

Kri*_*ian 6 html javascript jquery

寻找一种方法来定位所选文本并在Javascript中对其执行操作.我应该使用什么样的方法?这是jQuery的工作吗?非常感谢!

编辑:早期的答案被视为针对CSS类.我正在寻找点击和突出显示/选择文本,然后在JS中采取行动.谢谢!

编辑2:我被问到这个功能的一个例子.这是一个,但代码评论很差.让我知道你的想法.

Rob*_*obG 5

编写跨浏览器的通用“获取选定文本”功能非常困难。如果你可以限制你的要求,只说一个页面中选择的文本,那么生活就会更简单。

但是,如果您希望能够从任何地方(表单控件内部、按钮标签、一般文本)获取文本选择,那么生活就很艰难。

这是我前段时间写的一个函数,它对于使用它的应用程序来说已经足够好了:

/* 
 *  This function returns the selected text in a document.
 *  If no text selected, returns an empty string.
 *
 *  Call on one of the following events: 
 *
 *     mouseup - most appropriate event
 *               for selection by mousedown, drag to select, mouseup
 *               may select only whitespace
 *
 *    dblclick - not as appropriate as mouseup
 *               for selection of word by double click
 *               may select only whitespace
 *
 *  Note that text can be selected in ways that do not dispatch
 *  an event, e.g. selecting all the text in the document using:
 *     ctrl + a
 *     context menu -> Select All
 *     edit menu -> Select All
 *     programmatically selecting text
 */
function checkForSelectedText(e) {
  var e = e || window.event;
  var el = e.target || e.srcElement;
  var tagName = el.tagName && el.tagName.toLowerCase();
  var t;
  var d = document;

  // Try DOM 2 Range - for most browsers, including IE 6+
  // However, doesn't get text selected inside form controls
  // that allow selection of text content (input type text, 
  // textarea)
  if (d && d.selection && d.selection.createRange) {
    t = d.selection.createRange().text;

  // Otherwise try HTML5 - note that getSelection returns
  // a string with extra properties. This may also get
  // text within input and textarea
  } else if (d.getSelection) {
    t = d.getSelection();
  }

  // If didn't get any text, see if event was inside
  // inupt@type=text or textarea and look for text
  if (t == '') {
    if (tagName == 'textarea' || 
       (tagName == 'input' && el.type == 'text')) {

     // Check selectionStart/End as otherwise if no text
     // selected, IE returns entire text of element
     if (typeof el.selectionStart == 'number' && 
         el.selectionStart != el.selectionEnd) {
        t = el.value.substring(el.selectionStart, el.selectionEnd)
     }
    }
  }
  return t;
}
Run Code Online (Sandbox Code Playgroud)

  • 所有评论都做得很好。一些你不常看到的东西。有时候,要进入别人的踪迹是非常困难的。 (2认同)