用正则表达式替换某些内容的特定div

时间:2015-03-14 16:43:04

标签: javascript html regex

在我的HTML代码中,我有以下内容:

<div class="placeholderAccordion">
    <h4>title goes here</h4>
    <p>content goes here</p>
</div>

使用JavaScript,我尝试使用.replace()将div和其中的所有内容替换为其他东西,但我无法使其工作。我还是regex的新手......有没有人有正则表达式来解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用jQuery,非常简单:

$('.placeholderAccordion h4').html('title replaced.');
$('.placeholderAccordion p').html('content replaced.');

JSFiddle

上试用