如何使 HTML 文档在浏览器中可写?

发布于 2024-07-13 12:06:47 字数 594 浏览 11 评论 0 原文

以免我的问题不清楚; 我的意思并不是用

PS 我从 JavaScript 圣经黄金版,丹尼·古德曼 (Danny Goodman),2001 年

Lest my question is not clear; I don't mean dynamically replacing <p> nodes with <textarea>. I mean editing each and all text directly - including headers, text in <div> and <span> and yes editing tables. I know this is possible in IE and I have a script which switches between editable and back which works in IE, but that doesn't work in Firefox. Is there any way to make it work in FF?

P.S. The script for IE I got from JavaScript Bible Gold Edition by Danny Goodman, 2001

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

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

发布评论

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

评论(2

洛阳烟雨空心柳 2024-07-20 12:06:47

Firefox 的 Firebug 扩展 几乎允许您编辑任何内容。

Firebug Extension for Firefox pretty much allows you to edit anything.

演出会有结束 2024-07-20 12:06:47

在火狐浏览器中> 3 您可以将 contentEditable 用于我理解的 html 元素。 标签如下所示:

<div id="myEditableDiv" contentEditable="true">click here to edit ...</div>

您可以使用“execCommand”控制编辑过程(请参阅:msdn 用于命令标识符)

In firefox > 3 you can use contentEditable for html elements I understood. A tag looks like this:

<div id="myEditableDiv" contentEditable="true">click here to edit ...</div>

you can control the editing process with 'execCommand' (see: msdn for command identifiers)

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