$('<p style="color:red">测试insertAfter方法增加</p>','<p style="color:red">gggggggggg多参数</p>').insertAfter($(".test2"))
不支持多参数处理,所以没有显示
可以用一個<div>把兩個P元素包裹起來
$('<div><p style="color:red">测试insertAfter方法增加</p><p style="color:red">gggggggggg多参数</p><div>').insertAfter($(".test2"))
before、after与insertBefore。insertAfter的除了目标与位置的不同外,后面的不支持多参数处理