解决Discuz7在Chrome中无法显示弹出窗口内容的问题
2011/1/9 9:16:40 babydavic http://babydavic.javaeye.com
我要评论(0)
- 摘要:修改include/js/common.jsForDisczu7.1/7.2找到$(ajaxframeid).contentWindow.document.documentElement.firstChild.nodeValue;修改为$(ajaxframeid).contentWindow.document.documentElement.firstChild.wholeText;ForDisczu7.0找到s=$(ajaxpostHandle[1]).contentWindow
- 标签:解决 问题 内容 Chrome 弹出窗口
修改 include/js/common.js For Disczu 7.1/7.2 找到
$(ajaxframeid).contentWindow.document.documentElement.firstChild.nodeValue;
修改为 $(ajaxframeid).contentWindow.document.documentElement.firstChild.wholeText;
For Disczu 7.0
找到 s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue; 修改为 s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.wholeText;