欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js跳轉(zhuǎn)頁面方法總結(jié)

 更新時間:2014年01月29日 10:13:04   作者:  
本篇文章主要是對js跳轉(zhuǎn)頁面方法進(jìn)行了詳細(xì)的總結(jié)介紹,需要的朋友可以過來參考下,希望對大家有所幫助

js跳轉(zhuǎn)頁面方法大全
<span id="tiao">3</span><a href="javascript:countDown"></a>祥子網(wǎng)屋;秒后自動跳轉(zhuǎn)……<meta http-equiv=refresh content=3;url='/search/billsearch.jsp'</ul>

<!--腳本開始-->
<script language="javascript" type="">
function countDown(secs){
tiao.innerText=secs;
if(--secs>0)
   setTimeout("countDown("+secs+")",1000);
}
countDown(3);
</script>
<!--腳本結(jié)束-->

按鈕式:
<INPUT name="pclog" type="button" value="GO" onClick="location.href='http://www.dbjr.com.cn/'">

鏈接式:
<a href="javascript:history.go(-1)">返回上一步</a>
<a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

直接跳轉(zhuǎn)式:
<script>window.location.href='http://www.dbjr.com.cn';</script>

開新窗口:
<a href="javascript:" onClick="window.open('http://www.dbjr.com.cn','','height=500,width=611,scrollbars=yes,status=yes')">祥子網(wǎng)屋</a>

JS跳轉(zhuǎn)頁面參考代碼

第一種:
<script language="javascript" type="text/javascript">
window.location.href="login.jsp?backurl="+window.location.href;
</script>

第二種:
<script language="javascript">
alert("返回");
window.history.back(-1);
</script>

第三種:
<script language="javascript">
window.navigate("top.jsp");
</script>

第四種:
<script language="JavaScript">
self.location='top.htm';
</script>

第五種:
<script language="javascript">
alert("非法訪問!");
top.location='xx.jsp';
</script>

=====j(luò)avascript中彈出選擇框跳轉(zhuǎn)到其他頁面=====
<script language="javascript">
<!--
function logout()...{
if (confirm("你確定要注銷身份嗎?是-選擇確定,否-選擇取消"))...{
window.location.href="logout.asp?act=logout"
}
}
-->
</script>

=====j(luò)avascript中彈出提示框跳轉(zhuǎn)到其他頁面=====
<script language="javascript">
<!--
function logout()...{
alert("你確定要注銷身份嗎?");
window.location.href="logout.asp?act=logout"
}
-->
</script>

相關(guān)文章

最新評論