我在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帮助
之后添加一个按钮答案 0 :(得分:1)
var button = $("<button>Hi there</button>");
$(button).insertAfter('#:ne');
或
$('#:ne').after(button);
答案 1 :(得分:0)
尝试
$('#:ne').after('Your button code here');