HTML:
<div class="container>
<a href=""></a>
</div>
如何使用find获取锚点?我试过了:
html = $(html);
html.find('.container a').attr('href', 'xyz');
没有运气。
FYI html var是来自ajax调用的返回HTML块。
答案 0 :(得分:1)
它已经开玩笑了
$( html ).children( ".container a" ).attr( 'href', 'xyz' );
答案 1 :(得分:0)
你的html变量本身就是容器类。所以,不需要再找到它。你可以使用,
html = $(html);
html.find('a').attr('href','xyz');
希望这应该有用!!