来自不同设备的onclick功能的同步

时间:2017-09-30 10:47:12

标签: javascript php html

我的代码位于http://www.lesha.wemakesites.ru/

它的功能是反转字符串并计算使用服务的次数。 我想做的是,一旦打开页面并且有人在任何其他设备上运行代码,我可以看到总数改变了而没有重新加载页面。 为此,我正在使用以下视图的2个ajax请求:

var ajax_result = $.ajax({
        url: 'count.php',
        method: 'post',
        success: function () {}
    })

    var ajax_write = $.ajax({
        url: 'count.txt',
        success: function (data) {
            document.getElementById("total_global").style.display = ("none");
            document.getElementById("global").style.display = ("inline");
            document.getElementById("global").style.color = ("red");
            document.getElementById("global").innerHTML = data;

        }

在count.php中我有:

<?php 
    $file = 'count.txt'; 
    $file_open = file_get_contents($file);
    $file_open = (int)$file_open;
    $file_open = $file_open + 1;
    file_put_contents($file, $file_open);
    echo($file_open);
    ?>

在我用js动态显示结果之后。 然而,当我从手机上运行它直到我在PC上重新加载页面时,我看不到变化。

0 个答案:

没有答案