我试图在一段文本之后附加一个 img 。我使用“嵌入”来加载新闻项目,所以我必须在窗口加载时执行。它真的很简单:JsFiddle
我无法弄清楚为什么它不起作用。我尝试了许多组合和事件(之后,插入等)似乎没有任何效果。
我试图在一段文本之后附加一个 img 。我使用“嵌入”来加载新闻项目,所以我必须在窗口加载时执行。它真的很简单:JsFiddle
我无法弄清楚为什么它不起作用。我尝试了许多组合和事件(之后,插入等)似乎没有任何效果。
You should use .after
method.
$('.embed').find('.description').after('<img src="http://latitudes.nu/wp-content/themes/theme-framework/framework/media/images/comment_icon.gif" style="width:14px; height:14px; border:none;" />');
But, use setTimeout
is not a good idea, you should set the callback option as the plugin provide.
$("#element").append("<img src=\"image\">");