JQUERY:找到字符串时下划线DIV文本(多字符串)

时间:2017-06-01 13:41:08

标签: jquery

我需要在DIV中突出显示多个字符串。这是我当前的脚本,设置为加下划线,但是从不改变。

<script type="text/javascript">

$("div:contains('set to')").each(function()
{
    var $el = $(this);
    $el.html( $el.html().replace(/set to/g, '<span style="text-decoration: underline">SET</span> to') );
});


$("div:contains('changed from')").each(function()
{
    var $el = $(this);
    $el.html( $el.html().replace(/changed from/g, '<span style="text-decoration: underline">changed from</span>') );
});

</script>

0 个答案:

没有答案