Home  >  Article  >  Backend Development  >  利用php和js实现页面数据刷新_PHP

利用php和js实现页面数据刷新_PHP

WBOY
WBOYOriginal
2016-06-01 12:41:32639browse

利用"XXXX.htm"和"XXX.php"两个文件来实现数据的刷新

XXXX.htm

calrs();

function reload_me()
{
    c = document.getElementById("reload1");
    c.src = "";
    c.src = "XXXXX.php?reload=1";

    calrs();
   
    setTimeout('reload_me()', r_s);
}

// Refresh code
setTimeout('reload_me()', r_s);


 echo "document.all.p_show.innerHTML= \"?".rand(0,9)."\"";
?>

Statement:
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