我在我的网站上使用HTML示例(使用Crayon)并且也希望显示输出。
但我希望输出显示的纯度与没有任何网站自己的样式表一样。
我当然可以使用iframe执行此操作,但这看起来很单调乏味。有没有人知道的其他技巧或图书馆?
由于
答案 0 :(得分:0)
结束这样做。效果很好......
$('.crayon-title').click(function() {
var content = $(this).parent().siblings('.crayon-plain-wrap').children('textarea').text();
var x=window.open();
x.document.open();
x.document.write(content);
x.document.close();
})