我需要移除 $300 ,知道吗?价格是动态的
<h3>
$300.00 <br><span>$500.00</span>
</h3>
这是我的 jQuery 代码,我知道它的错误代码
$('.price>h3 ').contents().remove();
如果你只想要跨度:
$('h3').html(function( i, old){
return $(old).filter('span')
})
演示:http: //jsfiddle.net/dr7CC/
$(function(){
var children = $('h3').children();
$('h3').html('');
$('h3').append(children);
});