我试图在第一个孩子之后添加文字,但没有成功
<a href="#" name="usernameMenu" class="dropdown-toggle" data-toggle="dropdown" role="button">
<span class="glyphicon glyphicon-user"></span>add text here
<span class="caret"></span>
</a>
我尝试了一些命令。
我的最后一个
$('a[name="usernameMenu"] span:eq(0)').after().append("add text here");
我得到了
<a href="#" name="usernameMenu" class="dropdown-toggle" data-toggle="dropdown" role="button">
<span class="glyphicon glyphicon-user">add text here</span>
<span class="caret"></span>
</a>
答案 0 :(得分:1)