JavaScript實現通過select標籤跳轉網頁的方法,javascriptselect
本文執行個體講述了JavaScript實現通過select標籤跳轉網頁的方法。分享給大家供大家參考,具體如下:
我們經常有遇到需要用select標籤跳轉到新網頁的情況,dw產生的程式碼太複雜,那麼有沒有精簡的代碼得以實現呢?經過仔細的研究找到了以下幾段代碼,非常不錯。
話不多說,直奔主題。
當面跳轉的核心代碼是:"location.href=value"
新頁面開啟的核心代碼是:"window.open()"
代碼分四類:
1、當前頁面直接跳轉:
<select name="" onchange="javascript:location.href=this.value;"><option value="http://www.bkjia.com" selected="selected" >jb51</option><option value="http://www.163.com" >163</option><option value="http://www.sina.com" >sina</option><option value="http://www.sohu.com" >sohu</option></select>
2、新頁面彈出跳轉:
<select name="" onchange="javascript:window.open(this.options[this.selectedIndex].value)"><option value="http://www.bkjia.com" selected="selected" >jb51</option><option value="http://www.163.com" >163</option><option value="http://www.sina.com" >sina</option><option value="http://www.sohu.com" >sohu</option></select>
3、當前頁面點擊按鈕跳轉:
<form name="frm2" action=""><select name="page2"><option value="http://www.bkjia.com" selected="selected" >jb51</option><option value="http://www.163.com" >163</option><option value="http://www.sina.com" >sina</option><option value="http://www.sohu.com" >sohu</option></select><input type="button" value="提交" onclick="javascript:location.href=document.frm2.page2.options[document.frm2.page2.selectedIndex].value;"/></form>
4、新頁面點擊按鈕跳轉:
<form name="frm" action=""><select name="page"><option value="http://www.bkjia.com" selected="selected" >jb51</option><option value="http://www.163.com" >163</option><option value="http://www.sina.com" >sina</option><option value="http://www.sohu.com" >sohu</option></select><input type="button" value="提交" onclick="javascript:window.open(document.frm.page.options[document.frm.page.selectedIndex].value)"/></form>
以上是四種常見的跳轉方法。
另外還有一種當前頁面跳轉的代碼也比較簡潔:
<select name="" onchange="self.location.href=options[selectedIndex].value" ><option value="http://www.baidu.com">百度</option><option value="http://www.163.com">網易</option></select>
這個也是非常好的。