如何使用“contenteditable”更改元素上的光标样式IE 中的属性?

发布于 2024-09-25 12:44:55 字数 393 浏览 8 评论 0原文

我正在尝试更改 IE 中“contenteditable”属性设置为 true 的元素上的光标样式。

<div contenteditable="true" style="cursor:pointer;">
        text
</div>

我尝试过使用内联样式(如上面的示例),也使用 css 文件和 javascript 来做到这一点,但没有成功。

我的所有解决方案都可以在 FF 中正常工作,在 IE 中也可以正常工作,但前提是“contenteditable”属性设置为 false。所以这肯定与 IE 中 contenteditable 的实现有关,但我不知道如何解决这个问题。

我用的是IE8。

非常感谢您的帮助!

I am trying to change style of cursor on element that has 'contenteditable' attribute set to true in IE.

<div contenteditable="true" style="cursor:pointer;">
        text
</div>

I have tried do that using inline styling like in example above, also with css file and by javascript but with no luck.

All my solutions work in FF without problems, they work fine also in IE but only when 'contenteditable' attribute is set to false. So it is definitely somehting related with implementation of contenteditable in IE but I have no clue how to solve this problem.

I am using IE8.

Thank a lot for your help!

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

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

发布评论

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

评论(1

原野 2024-10-02 12:44:55

这取决于您选择的 DTD。看来您使用默认的严格 DTD。

以下是可能的声明的参考:
查看7.2 HTML版本信息。

我尝试过:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

它工作得很好,但它不适用于下一个声明:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

希望它有帮助,并且您可以在其他布局上使用该 DTD 而不会出现问题。

it depends on your DTD you have chossen. Seems you use default strict DTD.

Here is reference for possible declarations:
look to 7.2 HTML version information.

I tried with:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

and it works great, but it don't works with next declaration:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

Hope it helpful and you can use that DTD without issues on another layouts.

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