当我更新服务器上的文件时,html页面会自动更改html页面(每9秒检查一次更改)。如何触发铃声文件来提醒用户html页面更改?这是html:$(document).ready(function(){$("#responsecontainer").load("data.txt");varrefreshId=setInterval(function(){$("#responsecontainer").load('data.txt?randval='+Math.random());},9000);$.ajaxSetup({cache:false});}); 最佳