标签: javascript html regex
在我的HTML代码中,我有以下内容:
<div class="placeholderAccordion"> <h4>title goes here</h4> <p>content goes here</p> </div>
使用JavaScript,我尝试使用.replace()将div和其中的所有内容替换为其他东西,但我无法使其工作。我还是regex的新手......有没有人有正则表达式来解决这个问题?
.replace()
答案 0 :(得分:0)
使用jQuery,非常简单:
$('.placeholderAccordion h4').html('title replaced.'); $('.placeholderAccordion p').html('content replaced.');
在JSFiddle