本帖最后由 ymm285254609 于 2016-12-27 16:37 编辑
这问题我找了好久 就是点击文章快速操作后弹出的框无法显示内容如图
今天找到了一个方法 转载别人的因为我找了半天我怕别人也找不到 所以就转载别人的过来
修改 include/js/common.js For Disczu 7.1/7.2 找到
$(ajaxframeid).contentWindow.document.documentElement.firstChild.nodeValue; 修改为 $(ajaxframeid).contentWindow.document.documentElement.firstChild.wholeText;
修改 include/js/common.js For Disczu 7.0
找到 s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue; 修改为 s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.wholeText;
亲身试验过没问题
原著:http://blog.csdn.net/babydavic/article/details/6055135
|