很抱歉,如果这是一个简单的问题(或之前的回答),但有人可以告诉我如何使用JScript下载页面吗?我想使用Javascript每隔五秒在我的服务器上下载“example.php”页面并将其与之前的版本进行比较。如果页面发生变化,我希望Javascript代码刷新托管Javascript的页面。那有意义吗 ? Somethingl ike:
string downloaded = DownloadPage("example.php");
timer x = new timer(5);
计时器熄灭时:
if(DownloadPage("example.php") == downloaded){
RefreshPage();
}
谢谢,对不起,这可能是一个简单的问题:)
答案 0 :(得分:0)
使用jQuery框架的get函数:
$.get('example', function(data) {
if(data == "something")
//perform action
});