jQuery Pretty Print在运行时添加内容

时间:2014-10-02 20:43:43

标签: jquery html

有没有办法在prettyprint元素中添加内容,而无需删除所有内容。 以下代码有效,但它会删除所有内容并使用新内容重新填充。 这不是我需要的。

$('#console').html(content);
$('.prettyprinted').removeClass('prettyprinted');
prettyPrint();

我需要的是以下内容;

$('#console').prepend(content);
$('.prettyprinted').removeClass('prettyprinted');
prettyPrint();

遗憾的是,在prettyprinted元素上使用prepend无法正常工作,这是有道理的,之前已经初始化了元素中已经存在的内容。 所以我想知道是否有一个simular插件,它具有addContent等功能。

1 个答案:

答案 0 :(得分:-1)

如果prettyPrint是一个插件,那么你应该看看它是否包含一些你想要的前置方法。如果没有,那么在知道还有什么要做之前,我们需要知道prettyPrint正在做什么。