解决Discuz7在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;

你可能感兴趣的:(xml,chrome)