Ajax reload.delete其他脚本

时间:2017-06-12 09:39:44

标签: php ajax material

我在table.php页面上使用ajax reload。我正在使用google材料设计中的material.min.js来获取工具提示等功能。但是在用ajax重新加载页面后,material.min.js停止工作。

我的index.php包括table.php,我有:

<script>
  $(document).ready(function(){
    setInterval(function(){
      $.ajax({
        url: "table.php",
        cache: false,
        success: function(body){
          $(".page-content").html(body);
        }
      });
    },10000);
  });
</script>

1 个答案:

答案 0 :(得分:0)

谢谢大家,我已经找到答案了:

  

componentHandler.upgradeAllRegistered();