Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$ 300を削除する必要があります、何か考えはありますか?価格は動的に来ています
<h3> $300.00 <br><span>$500.00</span> </h3>
これは私のjQueryコードでした、私はその間違ったコードを知っています
$('.price>h3 ').contents().remove();
$('h3').contents(':not(span)').remove();
デモ
また
$('.price > h3').text(function(index, text) { return text.replace(/300.00/,'').replace(/\$/,''); });
$('.price > h3').html(function(index, text) { return $('span'); });
スパンだけが必要な場合:
$('h3').html(function( i, old){ return $(old).filter('span') })
デモ: http://jsfiddle.net/dr7CC/
$(function(){ var children = $('h3').children(); $('h3').html(''); $('h3').append(children); });