尝试在div标签
中添加类H1标签function MatchReplace(content)
{
var input = content;
**$j('.wmd-preview').children().addClass('overridedefault');
input = content.replace(/\<h1>/gi, "<h1 class='overridedefault'>");**
}
尝试了两个孩子()并添加了课程,但没有添加。 如果我在这里遗漏了什么,请告诉我
答案 0 :(得分:0)
$("#add").click(function(){
$('#adhere>h1').addClass("green")
})
$( "#target" ).keyup(function() {
$('#adhere>h1').addClass("green")
});
#adhere{
border: red 1px solid;
}
.green{
color:green;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div id="adhere"><h1>This is H1</h1></div>
<button id='add'>add class</button>
<input type="text" id="target" />
答案 1 :(得分:0)
尝试将第一个H1标签中的类添加到div中 http://jsfiddle.net/mig1098/xd9ahwbw/
addingclass = function(_class){
$('.wmd-preview').find('h1').first().addClass(_class);
}