我正在尝试p
在$(this)
. 我已经写了这个$(this).p.addClass("abc");
但它不起作用。我怎样才能做到这一点?
问问题
493 次
3 回答
1
使用 jQuery insertAfter()
:
$("<p>text to insert </p>").insertAfter(this);
于 2013-07-30T20:46:08.877 回答
0
最快的方法
$( this ).after( "<p class='abc' />" );
于 2013-07-30T20:48:59.313 回答