问问题
99 次
2 回答
0
试试喜欢
$html.find("a[href$='mp3']").filter(function () {
你只是错过了' ] '之后mp3
,你可以选择改变
return 'test="' + this.getAttribute('href') + '"></a>';
对此
return 'test="' + this.attr('href') + '"></a>';
于 2013-07-06T09:34:14.843 回答
0
更新代码:
var html = '<p>lorem ipsum<a href="sound.mp3">Sound</a></p>';
var $html = $('<div/>').html(html);
$html.find("a[href$='mp3']").filter(function () {
var $mp3 = $(this);
$mp3.after('<test>' + $mp3.attr('href') + '</test>');
$mp3.remove();
});
html = $html.html();
alert(html);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
于 2013-07-06T09:49:30.570 回答