dongyi2534 2015-11-30 14:50
浏览 22

在页面加载后使用Ajax调用php代码

I got some php code that i want to execute when the page is fully loaded and i only want it to execute one time and no more after clicking submit.

this is the php code i want to execute

$backup=fopen("backup/".time().".json", "w");
    fwrite($backup, json_encode($list)); fclose($backup);

can someone tell me how to execute this code after page is loaded and only 1 time. If possible.

  • 写回答

1条回答 默认 最新

  • dslh32311 2015-11-30 14:56
    关注
    //wait for the DOM to be loaded
    $(document).ready(function(){
        var $button = $('#idOfYourButton');
        $button.on('click', function(e){
        //if we have a submit button we probably do not want it to send the data via post/get
        e.preventDefault();
        $.ajax({
              url: "/your/path/file.php",
              success: function(){
                  //do something when script was called 
              }
            });
        });
    });  
    

    For the script to only run once, you have to define what this means. Once per session? Set a session flag on your server. Once per refresh? You can simply use a javascript variable.

    评论

报告相同问题?

悬赏问题

  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 保护模式-系统加载-段寄存器