天空小小岛技术论坛

 找回密码
 注册
搜索
天空小小岛技术网站 门户 查看主题

5d6d 管理操作在 ie9 下不兼容的解决方案

发布者: 一粒米 | 发布时间: 2012-5-17 21:39| 查看数: 13491| 评论数: 0|帖子模式

问题来源:
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)

最新评论

小黑屋|手机版|Archiver|天空小小岛  |京ICP备2025130156号|

GMT+8, 2025-7-3 16:46 , Processed in 0.091988 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表