页面刷新实现方法总结
考试吧 2010/5/17 字号:T T
1)
10表示间隔10秒刷新一次
2)
window.location.reload(true);
如果是你要刷新某一个iframe就把window给换成frame的名字或ID号
3)
window.navigate("本页面url");
4>
function abc()
{
window.location.href="/blog/window.location.href";
setTimeout("abc()",10000);
}
刷新本页
Response.Write("window.location.href=window.location.href;")
刷新父页
Response.Write("opener.location.href=opener.location.href;")
转到指定页:
Response.Write("window.location.href='yourpage.aspx';")
刷新页面实现方式总结(HTML,ASP,JS)
'by aloxy
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>