zoukankan      html  css  js  c++  java
  • eWebEditor在IE8,IE7下所有按钮无效之解决办法

    错误的原因是因为ie8屏蔽了anonymous方法 所以要改成onclick方法,打开include下面的editor.js文件,有这样的段代码(大概在166所在的函数中):

    Js代码
    1. if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");  
    if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");

    把那个anonymous方法改成onclick就可以了。
    问题是解决了,结果发现把那个方法改成onclick之后在ie6下面就不管用了 ,解决方法:

    Js代码
    1. if(navigator.appVersion.match(/MSIE (7|8)\./i)!=null){   
    2.     if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)");    
    3. }else{   
    4.     if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");   
    5. }  
    if(navigator.appVersion.match(/MSIE (7|8)\./i)!=null){   
       if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "onclick(event)"); 
    }
    else
    {  
      if (element.YUSERONCLICK) eval(element.YUSERONCLICK + "anonymous()");
    }

    OK,这下对了。

  • 相关阅读:
    attention 介绍
    卷积神经网络中的channel 和filter
    滤波和卷积
    最容易理解的对卷积(convolution)的解释
    随机梯度下降
    optimizer
    一个深度学习的例子
    Batch_Size 详解
    softmax函数详解
    Must Know Tips/Tricks in Deep Neural Networks
  • 原文地址:https://www.cnblogs.com/kuyuecs/p/1702200.html
Copyright © 2011-2022 走看看