1

我试图在一段文本之后附加一个 img 。我使用“嵌入”来加载新闻项目,所以我必须在窗口加载时执行。它真的很简单:JsFiddle

我无法弄清楚为什么它不起作用。我尝试了许多组合和事件(之后,插入等)似乎没有任何效果。

4

2 回答 2

1

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;" />');

A fix to your demo.

But, use setTimeout is not a good idea, you should set the callback option as the plugin provide.

于 2012-10-06T09:49:40.493 回答
1
$("#element").append("<img src=\"image\">");
于 2012-10-06T09:28:54.127 回答