我想使用JavaScript的文本突出顯示選項。我知道如何找到字符串的開始位置,bt如何使其突出顯示。我的代碼看起來像使用javascript的文本突出顯示
<div id="entity">health insurance</div>
<div id="article">This kind of insurance is meant to supplement health insurance for cancer-care costs. But generally you're better off putting your money toward comprehensive health policies. </div>
而且我已經用它
$(document).ready(function()
{
var test=document.getElementById('article').innerHTML;
var variable=document.getElementById('entity').innerHTML;
alert(test.search(new RegExp(variable, "i")));
});
這將提醒字符串的開頭現在的位置的JavaScript。
澄清你的疑問。你想突出顯示,是否是div cont?艾寧文字? – shanky
實體ID內的內容應該在文章ID中被突出顯示。 – user1371896