可能重复:
自动页面刷新
我在网上找到了这个开关,想用它来刷新页面。如果用户单击“打开”,它将每 5 秒刷新一次页面。如果他们点击关闭,它将停止。可以请一些帮助我。这是我到目前为止所拥有的:
<style>
body{
font-family:Verdana, Geneva, sans-serif;
font-size:14px;}
.left{
float:left;
width:120px;}
#ajax{
float:left;
width:300px;
padding-top:5px;
font-weight:700;
}
.clear{clear:both;}
</style>
</head>
<body>
</a></div>
<div id="container">
<div class="left" id="1"></div>
<div id="ajax"></div>
<div class="clear"></div>
<script type="text/javascript">
$('#1').iphoneSwitch("on",
function() {
$('#ajax').load('on.html');
},
function() {
$('#ajax').load('off.html');
},
{
switch_on_container_path: 'iphone_switch_container_off.png'
});
</script>