我在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>
答案 0 :(得分:0)
谢谢大家,我已经找到答案了:
componentHandler.upgradeAllRegistered();