<html>
<head>
<script language="javascript" src="js/jquery-1.7.js"></script>
<script type="text/javascript">
$(document).ready(function(){
setInterval("show()","1000");
});
function show(){
alert("");
};
</script>
</script>
</head>
<body>
<input name="btnLoad1" type="button" id="btnLoad1" value="不要模仿哥,哥需要寂寞">本方法实现每隔一秒执行一次函数 </input>
</body>
</html>