Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次为 WMD 控件刷新预览时,我都需要执行一个函数。
有什么功能可以用来插入预览刷新的钩子吗?
var editor1 = new Markdown.Editor(converter1); editor1.hooks.set("onPreviewRefresh", HtmlUpdated); editor1.run();
}
function HtmlUpdated(){ ...deal with it... }