停电

我住的小区连续三个晚上停电,前两次只停了两个楼,这次全小区都停了。于是黑暗变得烦躁起来。 小时候住在三层楼房的一层。每到停电,就有小孩子跑到窗

Google个性化页面中实例化XMLHTTP对象的方法

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 function x() { var a=null; try { a=new ActiveXObject(["Msxml2.XMLHTTP"](http://www.microsoft.com/china/technet/community/scriptcenter/resources/hey0222.mspx)); } catch(c) { try { a=new ActiveXObject(["Microsoft.XMLHTTP"](http://www.knowsky.com/5190.html)); } catch(b) { a=null; } } if(!a&&typeof XMLHttpRequest!="undefined") { a=new [XMLHttpRequest](http://developer.apple.com/internet/webcontent/xmlhttpreq.html)(); } return a; } 这个实例化方法至少支持IE、F