»
Tiếng AnhTiếng PhápTiếng Việt

In - Trình đơn chọn có chú thích - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Trình đơn » Định hướng » Trình đơn chọn có chú thích
URL: https://www.javascriptbank.com/a-menu-list.html

Trình đơn chọn có chú thích © JavaScriptBank.comHiệu ứng tạo một trình đơn JavaScript chọn có chú thích trên trang web, muốn chuyển đến địa chỉ nào đó bạn nhấp chuột chọn tên tương ứng và nhấn nút Go.

Phiên bản đầy đủ: jsB@nk » Trình đơn » Định hướng » Trình đơn chọn có chú thích
URL: https://www.javascriptbank.com/a-menu-list.html



JavaScript
<SCRIPT language=JavaScript><!-- Beginfunction go_to_station() {if (document.stationform.stationselect.options[0].selected) {window.location.href = "http://JavaScriptBank.com";}else if (document.stationform.stationselect.options[1].selected) {window.location.href = "http://JavaScriptBank.com";}else if (document.stationform.stationselect.options[2].selected) {window.location.href = "http://JavaScriptBank.com";}else if (document.stationform.stationselect.options[3].selected) {window.location.href = "http://JavaScriptBank.com";}else if (document.stationform.stationselect.options[4].selected) {window.location.href = "http://JavaScriptBank.com";}else if (document.stationform.stationselect.options[5].selected) {window.location.href = "http://JavaScriptBank.com";}return true;}function textValue() {var stationInteger, stationStringstationInteger=document.stationform.stationselect.selectedIndexstationString=document.stationform.stationselect.options[stationInteger].textdocument.stationform.stationtext.value = "Go to " + stationString +"!"}// End --></SCRIPT><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<SELECT onchange=textValue() multiple size=5 name=stationselect>            <OPTION>JavaScriptBank.com            <OPTION>Link item #            <OPTION>Link item #            <OPTION>Link item #            <OPTION>Link item #            <OPTION>Link item #            </SELECT><br>            <INPUT onclick=go_to_station() type=button value=Go! name=stationbutton><br>            <INPUT maxLength=35 size=35 name=stationtext> <!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->