var is_chrome = /chrome/.test( navigator.userAgent.toLowerCase() );
第二步:
找到:
if(is_ie) {
s = $(ajaxpostHandle[1]).contentWindow.document.XMLDocument.text;
} else {
s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue;
}
替换为:
if(is_ie) s = $(ajaxpostHandle[1]).contentWindow.document.XMLDocument.text;
else if(is_chrome) s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.wholeText;
else s = $(ajaxpostHandle[1]).contentWindow.document.documentElement.firstChild.nodeValue;