摘要: ajax window.onload = function () { //通过javascript请求服务器的步骤: //1.创建一个XMLHttpRequest对象 var xhr = null; //通过能力检测,在不同浏览器下创建该对象 if (XMLHttpRequest) { xhr = 阅读全文
posted @ 2017-05-14 22:06 NE_STOP 阅读(2) 评论(0) 推荐(0) 编辑
摘要: application对象 用途:保存网站共享数据。记录在线人数等。 application:应用程序 第一个用户访问站点时,应用程序启动,并创建一个application对象 创建 成功后,整个应用程序中都可以使用该对象 除非应用程序关闭,否则对象一直存储在内存中 在Global文件中的代码 vo 阅读全文
posted @ 2017-05-14 21:24 NE_STOP 阅读(3) 评论(0) 推荐(0) 编辑