0

我在html中有一个按钮...

<div id=":ne" class="T-I J-J5-Ji ar7 nf T-I-ax7 L3" role="button" tabindex="0" aria-expanded="false" style="-webkit-user-select: none; " aria-haspopup="true"> <span class="Ykrj7b">More</span> </div> 

现在我想在这个按钮之后附加一个按钮。请帮助

4

2 回答 2

1
var button = $("<button>Hi there</button>");

   $(button).insertAfter('#:ne');

或者

$('#:ne').after(button);
于 2012-06-05T11:05:08.123 回答
0

尝试

$('#:ne').after('Your button code here');
于 2012-06-05T11:08:03.293 回答