像 StackOverFlow 使用的 WMD 编辑器是如何工作的?

发布于 2024-11-07 19:31:00 字数 167 浏览 0 评论 0原文

我有兴趣知道您在文本框中键入的文本如何不需要刷新页面? 一些类似的替代方案包括:

lixlpixel

但它们往往会在每次按下按键时刷新页面......

I'm interested in knowing how does the text you type on the text box doesn't require a page refresh?
Some similar alternatives include:

lixlpixel

But they tend to do a page refresh every time a keystroke is pressed...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

汹涌人海 2024-11-14 19:31:00

他们有一个用 Javascript 实现的 Markdown 到 HTML 转换器。每当“文本区域”的内容发生更改时,预览区域都会使用运行 Markdown 到 HTML 转换器的结果进行更新。显然,事情远不止这些——让这种事情表现良好可能很棘手——但这就是它的本质。

如果您在 Safari 等浏览器中检查文本区域,您可以看到它们使用 Javascript 事件处理程序来处理 drop、input、keydown、keypress、keyup、mousedown 和 Paste 事件。当这些事件之一发生时,脚本会做出适当的响应,包括运行 Javacript Markdown 到 HTML 转换器并将生成的 HTML 放入预览区域。

They have a Markdown to HTML translator implemented in Javascript. Whenever the content of the 'textarea' changes the preview area is updated with the result of running the Markdown to HTML converter. There's obviously more to it than that -- making this sort of thing perform well can be tricky -- but that's the essence of it.

If you inspect the textarea in a browser like Safari you can see that they are using Javascript event handlers for drop, input, keydown, keypress, keyup, mousedown and paste events. When one of these events happen the script responds appropriately, including to run the Javacript Markdown-to-HTML converter and putting the resulting HTML into the preview area.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文