网页跳转方法总结
时间:2014-05-09 11:04:35
收藏:0
阅读:273
1.直接嵌入js代码:
<script
type="text/javascript">
location.replace("http://www.brtn.cn");
</script>
2.在<head>中,加入:
<meta http-equiv="refresh"
content="0;url=http://www.baidu.com">
评论(0)