如果你是DZ 7.0論壇,你會發現股溝的Chomre點擊任何管理功能,比如改色、置頂等,彈出的菜單要不然就是空白要不然就沒法彈出來。現在給出一個簡單的解決辦法…
4 z+ ?* U: D! g( E1 z% s( @% F
6 b: N% \1 C) c9 T( \其實這是因為DZ7.0的JS程序沒有判斷正確瀏覽器,所以導致頁面動作失常而產生的不正常問題。
8 D4 ?" \9 B3 c; L* @9 f K( O
% B0 H& ^( Z$ p5 e4 V3 E# X7 x下面是解決辦法,首先找到你的 include/js/common.js 這個文件,打開它:
3 {5 V4 {' V5 ~) P. i. o# j% s* \' T6 q* x
第一步:
% p7 {2 ~; }( ~/ o+ c; S- u4 `
( b/ h( p4 V' N D, p% ^搜索:( ]+ S2 a, X) [2 Z( z `
^$ m$ P H0 U1 D
var is_moz = (navigator.product == 『Gecko』) && userAgent.substr(userAgent.indexOf(『firefox』) + 8, 3);2 @0 ]7 m& ]1 G) h5 c
1 M+ I" U e+ W- j0 m* a1 w
下面增加:
) M7 E9 O0 e1 m- }, c: A9 `' Y a, w/ y* g6 \8 d* T6 N4 I
var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );1 D4 c" s9 \3 h; H0 e& N. n/ G2 P! n1 G. F
+ S q# I6 f9 A' m第二步:
0 g* ~1 a" g, Y# z+ a% Q
, b h8 \2 h) t; N找到:7 h7 O7 _6 n: P6 S3 ?! D* u: E
( q; L1 f6 [4 Q* i% h3 i
if(is_ie) {+ o/ L. p% |* T" a. q
s = $(ajaxpostHandle[1]).contentWindow.document.XMLDocument.text;
& v4 f1 T/ h0 z" w6 e# C} else {
* Y; u1 D% q( U3 b- [# C" Us = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue;) d$ _# w* X! T# g
}- R0 Z! n/ x! T& r6 C2 W$ l
/ w, H8 \9 _5 s( b, ~替換為:" J3 F- T3 r. k0 F; n9 ^* U
% M) P# C5 c1 ?if(is_ie) s = $(ajaxpostHandle[1]).contentWindow.document.XMLDocument.text;
6 ~6 f4 H# f) }0 K; {5 Welse if(is_chrome) s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.wholeText;
/ X/ {( C# z* L; E$ nelse s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue;! Q5 r( d9 y, C, j
# b+ K/ u& a* I% w* U* H
現在到DZ後台,刷新緩存,再試試CHROME股溝瀏覽器,是不是正常了! |