如何停用内容编辑

发布于 2024-12-22 23:30:06 字数 392 浏览 1 评论 0原文

我有一个带有 img 的网页。每次用户点击 img 时,都会生成一个 span 标签,并将 contentEditable 属性设置为 true

我的问题是,如果用户单击 img 添加 span,单击 span (从而激活可编辑区域),然后单击返回 img,它将添加另一个可编辑的 span(所需效果),但它也会使第一个 span 处于编辑模式。

如何将可编辑的 span 改回正常的 span

I have a webpage with an img. Each time the user clicks on the img, it will generate a span tag with the contentEditable attribute set to true.

My problem is that if the user clicks on the img to add a span, clicks on the span (thus activating the editable zone), then clicks back on the img, it will add another editable span (desired effect) but it will also leave the first span in edit mode.

How can I change back the editable span into a normal span?

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

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

发布评论

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

评论(1

吻风 2024-12-29 23:30:06

您可以使用 jQuery 删除 contenteditable 属性和焦点,如下所示:

$('span#id').removeAttr('contenteditable').blur();

如果您想设置所有可编辑范围的样式,您可以在 CSS 中这样做:

span[contenteditable] { } /* editable */

You can remove the contenteditable attribute and the focus with jQuery like this:

$('span#id').removeAttr('contenteditable').blur();

If you want to style all spans that can be edited you can do it like this in CSS:

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