在动态生成的代码上使用 Pretify
我使用 Prettify 进行语法突出显示,但它不适用于动态生成的代码。
我有一个表单,提交后会生成代码并在
?
I'm using Prettify for syntax highlighting, but it doesn't work on dynamically generated code.
I have a form that when submitted generates code and displays it (without refreshing) in <div id="output></div>
, but prettify doesn't work on this code, is there any workaround?
Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
确保在加载新代码后重新调用 Pretify。
您需要向“提交”事件添加一个处理程序。我不知道你使用的是框架还是原始JS,所以我无法给出代码示例。
Make sure you recall Prettify once the new code is loaded.
You will need to add a handler to the 'Submit' event. I don't know if you are using a framework or raw JS, so I can't give a code example.
http://www.codingthewheel.com/archives/ 有一个很好的解决方案语法突出显示-stackoverflow-google-prettify。
简而言之:
prettyPrint()
。
从 http://www.codingthewheel.com/archives 复制的代码/syntax-highlighting-stackoverflow-google-prettify
There's a nice solution at http://www.codingthewheel.com/archives/syntax-highlighting-stackoverflow-google-prettify.
In short:
prettyPrint()
.
code copied from http://www.codingthewheel.com/archives/syntax-highlighting-stackoverflow-google-prettify