JQuery追加函数在按钮后附加按钮

时间:2012-06-05 11:03:36

标签: jquery jquery-ui jquery-plugins

我在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> 

现在我想在此button.plz帮助

之后添加一个按钮

2 个答案:

答案 0 :(得分:1)

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

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

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

答案 1 :(得分:0)

尝试

$('#:ne').after('Your button code here');