鼠标指针在TinyMCE中的不可编辑元素上

Dmi*_*try 8 html tinymce contenteditable mouse-pointer internet-explorer-9

我试图在我的TinyMCE 4中集成一些不可编辑的区域.它工作正常.但现在我希望光标在不可编辑的元素上变得"不被允许".我在css中设置它,它一切正常用于Chrome和Firefox但不适用于IE9光标不会改变!

这个问题有解决方法吗?

谢谢

你可以在http://fiddle.tinymce.com/iSeaab找到一个简单的例子

poo*_*pro 4

IE 仅支持 CUR 和 ANI 作为 CSS 格式来更改光标。

{
    cursor: url('/cursors/customMoveCursor.png'),      /* Modern browsers    */
            url('/cursors/customMoveCursor.cur'),      /* Internet Explorer  */
            move;                                      /* Older browsers     */
}
Run Code Online (Sandbox Code Playgroud)

请看这里或者这里有一个很好的链接

您是否尝试过编辑 TinyMCE 的 CSS,例如 (tinymce/skins/lightgray/skin.min.css)

添加您需要的内容。例子:

    .mce-grid td.mce-grid-cell div[disabled]
{
cursor:not-allowed
}
Run Code Online (Sandbox Code Playgroud)

我仍然建议 IE 使用 .cur 文件。