内容可编辑表格行、列修饰符

发布于 2024-10-25 11:35:25 字数 87 浏览 2 评论 0 原文

使表格可编辑时,无论如何都不显示行和列修改(两个箭头和十字)。我浏览了 contenteditable 的 W3C 草案,它没有讨论任何关于不同元素的具体情况。

Is there anyway to not display the row and column modification (the 2 arrows and cross) when making a table editable. I went through the W3C draft for contenteditable and it doesn't talk anything about the specific cases of different elements.

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

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

发布评论

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

评论(1

对你而言 2024-11-01 11:35:25

如果我理解正确,以下将在 Firefox 中执行此操作(注意:显然必须先加载文档,然后才能执行此命令。请参阅下面的评论):

 document.execCommand("enableInlineTableEditing", null, false);

另请参阅这个问题:Javascript、Firefox:如何禁用浏览器特定的单元格控件?

If I understand you correctly, the following will do it in Firefox (note: apparently the document must be loaded before this command can be executed. See comments below):

 document.execCommand("enableInlineTableEditing", null, false);

See also this question: Javascript, Firefox: how to disable the browser specific cell controls?

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