html网页获取php网页数据等知识记录_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:28:25
Original
1051 people have browsed it

所有跟php有关的网页都必须在Apache服务器下打开。需要配置好confg.ini的文件路径。

AJAX:

通过事件不断的向服务器发送请求,然后服务器会时时返回最新的数据,这就是AJAX的功能

PS:IE浏览器第一次会向服务器发送请求,获取最新数据,而第二次它就默认获取缓存数据,导致数据不是最新的。

  解决办法:使用JavaScript随机字符串

  addEvent(document,'click',function(){

    var xhr=createXHR();                       //创建XHR对象

      //xhr.open('get','demo.php',false);              //请求发送,以get方式请求,url是demo.php

    xhr.open('get','demo.php?rand='+Marth.random(),false);  //适应IE浏览器

    xhr.send(null);                        //发送请求。get不需要数据提交,则填写为null

    alert(xhr.responseText);                    //打印服务端发回来的数据

})

 

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template