摘要:
JQuery 在XML格式返回数据的时候在firefox中能共成功显示调用回调函数,而在IE6中不能成功的调用回调函数 由于在设置contentType的时候可能将charset="gbk",所以不能正确的解析XML数据,必须将charset="utf-8"才行,至于原因还没有弄清楚。 阅读全文
摘要:
1.建立xmlHttpRequest对象 if(window.XMLHttpRequest){ xmlHttp = new XMLHttpRequest(); if(xmlHttp.overrideMimeType){ xmlHttp.overrideMimeType("text/xml"); } }else if... 阅读全文