天空小小岛技术网站

标题: 5d6d 管理操作在 ie9 下不兼容的解决方案 [打印本页]

作者: 一粒米    时间: 2012-5-17 21:39
标题: 5d6d 管理操作在 ie9 下不兼容的解决方案
问题来源:
http://www.5d6d.net/viewthread.php?tid=907602

问题演示


解决方案

1、打开
templates/default/header.htm
找到
  1. <meta http-equiv="x-ua-compatible" content="ie=7" />
复制代码
改成
  1. <meta http-equiv="X-UA-Compatible" content="ie=7,ie=9">
复制代码
2、打开
include/js/common.js
ajaxpost函数体内找到(891行)
  1. if (is_ie && !is_opera) {
复制代码
改成
  1. if (is_ie && !is_opera && is_ie < 9) {
复制代码
ajaxpost_load 函数体内找到(920行)
  1. if(is_ie) {
复制代码
改成
  1. if(is_ie && is_ie < 9) {
复制代码
搞定,更新缓存

附改好的 js
common.js (68.94 KB, 下载次数: 0)






欢迎光临 天空小小岛技术网站 (http://tkxxd.net/) Powered by Discuz! X3.1