我想知道JavaScript中是否有加载给定文件内容的东西。例如,我有一个名为timer.php
的文件,在某些条件下它会打印1
或0
,我需要JavaScript读取它并将其用作变量以执行函数。
比如:
function dothis() {
var timer = getfilecontents(timer.php);
if(timer == 1) {
somefunction();
}
}
差不多就是这样了。我能做什么?
重试AJAX
做的
<script>
function dothis(){
$.ajax({
type: 'get',
cache: false,
url: 'http://example.com/timer.php',
beforeSend:function() {
console.log('loading...');
},
success: function(response) {
console.log(response)
}
});
}
</script>