zoukankan      html  css  js  c++  java
  • fckeditor2.6在IE9下的弹出窗口报错问题解决

    fckeditor2.6在IE9下的弹出窗口报错问题解决.

    原因, IE9 开始不支持 JS 的这个写法了 var $=document.getElementById;

    修改方法:

    见 fckeditor/editor/js/fckeditorcode_ie.js 的38行的这个方法:

    FCKTools.RegisterDollarFunction

    修改为:FCKTools.RegisterDollarFunction=function(A){A.$=function(v){return A.document.getElementById(v);}};

  • 相关阅读:
    Linux
    网络
    线程池
    JVM内存结构相关知识
    JVM命令
    maven
    多线程
    AJAX、JSON
    JSP、EL、JSTL
    Mysql面试总结
  • 原文地址:https://www.cnblogs.com/lyghost/p/2496543.html
Copyright © 2011-2022 走看看