2
A
回答
3
這裏有一個辦法做到這一點招呼,但它不是一些簡潔而巧妙的jQuery - 大多是直接的JavaScript。
<div id="content">hello, hello, hello</div>
<script type="text/javascript">
$(document).ready(function() {
var searchKey = "hello"; // text to search for in element
var elementToSearch = $("#content"); // jquery element with text to search for matches
var instanceToHighlight = 2; // 1-based; e.g. 3 = third instance found
highlightText(searchKey, elementToSearch, instanceToHighlight);
});
function highlightText(searchKey, elementToSearch, instanceToHighlight) {
var content = elementToSearch.html();
var highlightIndex = instanceToHighlight - 1;
var lastIndex = -1;
var i = 0;
// get the index in the overall text of the instance to highlight
while (i <= highlightIndex) {
lastIndex = content.indexOf(searchKey, lastIndex + 1);
i++;
}
var testValue = content.slice(lastIndex, lastIndex + searchKey.length);
if (testValue !== searchKey) {
return; // didn't find an actual match
}
// chop up the content string so that the <span> tag can be wedged in around the text to highlight
var contentBeforeHighlightText = content.substr(0, lastIndex);
var contentAfterHighlightText = content.substr(lastIndex + searchKey.length, content.length - 1);
highlightedText = "<span class=\"highlight\">" + searchKey + "</span>";
content = contentBeforeHighlightText + highlightedText + contentAfterHighlightText;
elementToSearch.html(content);
}
</script>
相關問題
- 1. 突出顯示特定點的文本字段中的文本
- 2. 使用jquery突出顯示文本
- 3. 按特定順序突出顯示特定文本
- 4. HTML中的jQuery文本突出顯示
- 5. 突出顯示的文本
- 6. 在用戶輸入時突出顯示特定文本
- 7. 突出顯示特定的輸出行
- 8. CSS - HTML文本突出顯示它不應該在的位置
- 9. 獲取突出顯示文本div的位置
- 10. 使用jquery突出顯示文本框中的文本
- 11. 如何突出顯示QListWidgetItem文本中的特定字母?
- 12. 突出顯示richtextbox中的特定文本
- 13. 突出顯示Web元素中的特定文本
- 14. 獲取突出顯示/選定文本
- 15. Jquery突出顯示的文本的選定值
- 16. 突出顯示文本
- 17. 突出顯示文本,住
- 18. 突出顯示文本programmaticly
- 19. 突出顯示文本CSS
- 20. EditText突出顯示文本
- 21. CSS文本突出顯示
- 22. 突出顯示文本
- 23. 使用DatePicker突出顯示jQuery中的特定日期
- 24. 如何使用jQuery突出顯示DIV的特定部分?
- 25. 使用Jquery突出顯示錶中特定的數據列
- 26. 使用javascript的文本突出顯示
- 27. 突出顯示文本並將註釋插入特定的Google文檔文本
- 28. 突出顯示DateTimePIcker中的特定值?
- 29. 突出顯示特定的行降價
- 30. 突出顯示特定的日子
謝謝ironsam,它的工作原理=) – 2010-08-06 08:47:23