Javascript获取文件内容



我想知道JavaScript中是否有加载给定文件内容的东西。例如,我有一个名为timer.php的文件,在某些条件下它会打印10,我需要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>

相关内容

  • 没有找到相关文章

最新更新