Highlight Words Jquery Library

Insructions

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/30368/199098/Highlight%20Words%20Jquery%20Library.js

  1. /*
  2. * jQuery Highlight plugin
  3. *
  4. * Based on highlight v3 by Johann Burkard
  5. * http://johannburkard.de/blog/programming/javascript/highlight-javascript-text-higlighting-jquery-plugin.html
  6. *
  7. * Code a little bit refactored and cleaned (in my humble opinion).
  8. * Most important changes:
  9. * - has an option to highlight only entire words (wordsOnly - false by default),
  10. * - has an option to be case sensitive (caseSensitive - false by default)
  11. * - highlight element tag and class names can be specified in options
  12. *
  13. * Usage:
  14. * // wrap every occurrance of text 'lorem' in content
  15. * // with <span class='highlight'> (default options)
  16. * $('#content').highlight('lorem');
  17. *
  18. * // search for and highlight more terms at once
  19. * // so you can save some time on traversing DOM
  20. * $('#content').highlight(['lorem', 'ipsum']);
  21. * $('#content').highlight('lorem ipsum');
  22. *
  23. * // search only for entire word 'lorem'
  24. * $('#content').highlight('lorem', { wordsOnly: true });
  25. *
  26. * // don't ignore case during search of term 'lorem'
  27. * $('#content').highlight('lorem', { caseSensitive: true });
  28. *
  29. * // wrap every occurrance of term 'ipsum' in content
  30. * // with <em class='important'>
  31. * $('#content').highlight('ipsum', { element: 'em', className: 'important' });
  32. *
  33. * // remove default highlight
  34. * $('#content').unhighlight();
  35. *
  36. * // remove custom highlight
  37. * $('#content').unhighlight({ element: 'em', className: 'important' });
  38. *
  39. *
  40. * Copyright (c) 2009 Bartek Szopka
  41. *
  42. * Licensed under MIT license.
  43. *
  44. */
  45.  
  46. jQuery.extend({
  47. highlight: function (node, re, nodeName, className) {
  48. if (node.nodeType === 3) {
  49. var match = node.data.match(re);
  50. if (match) {
  51. var highlight = document.createElement(nodeName || 'span');
  52. highlight.className = className || 'highlight';
  53. var wordNode = node.splitText(match.index);
  54. wordNode.splitText(match[0].length);
  55. var wordClone = wordNode.cloneNode(true);
  56. highlight.appendChild(wordClone);
  57. wordNode.parentNode.replaceChild(highlight, wordNode);
  58. return 1; //skip added node in parent
  59. }
  60. } else if ((node.nodeType === 1 && node.childNodes) && // only element nodes that have children
  61. !/(script|style|textarea)/i.test(node.tagName) && // ignore script, style, and textarea
  62. !(node.tagName === nodeName.toUpperCase() && node.className === className)) { // skip if already highlighted
  63. for (var i = 0; i < node.childNodes.length; i++) {
  64. i += jQuery.highlight(node.childNodes[i], re, nodeName, className);
  65. }
  66. }
  67. return 0;
  68. }
  69. });
  70.  
  71. jQuery.fn.unhighlight = function (options) {
  72. var settings = { className: 'highlight', element: 'span' };
  73. jQuery.extend(settings, options);
  74.  
  75. return this.find(settings.element + "." + settings.className).each(function () {
  76. var parent = this.parentNode;
  77. parent.replaceChild(this.firstChild, this);
  78. parent.normalize();
  79. }).end();
  80. };
  81.  
  82. jQuery.fn.highlight = function (words, options) {
  83. var settings = { className: 'highlight', element: 'span', caseSensitive: false, wordsOnly: false };
  84. jQuery.extend(settings, options);
  85. if (words.constructor === String) {
  86. words = [words];
  87. }
  88. words = jQuery.grep(words, function(word, i){
  89. return word != '';
  90. });
  91. words = jQuery.map(words, function(word, i) {
  92. return word.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
  93. });
  94. if (words.length == 0) { return this; };
  95.  
  96. var flag = settings.caseSensitive ? "" : "i";
  97. var pattern = "(" + words.join("|") + ")";
  98. if (settings.wordsOnly) {
  99. pattern = "\\b" + pattern + "\\b";
  100. }
  101. var re = new RegExp(pattern, flag);
  102. return this.each(function () {
  103. jQuery.highlight(this, re, settings.element, settings.className);
  104. });
  105. };

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址