如何使用“contenteditable”更改元素上的光标样式IE 中的属性?
我正在尝试更改 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您选择的 DTD。看来您使用默认的严格 DTD。
以下是可能的声明的参考:
查看7.2 HTML版本信息。
我尝试过:
它工作得很好,但它不适用于下一个声明:
希望它有帮助,并且您可以在其他布局上使用该 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:
and it works great, but it don't works with next declaration:
Hope it helpful and you can use that DTD without issues on another layouts.