這篇文章給大家分享的是有關(guān)js如何實現(xiàn)省份下拉菜單效果的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
寧夏網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)于2013年創(chuàng)立到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
2個下拉框,選擇1級菜單后,2級菜單出現(xiàn)相應(yīng)的備選項。如果沒有選擇則不能提交。
先創(chuàng)建html文件
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <form> <select id="province"> <option selected="selected">請選擇...</option> </select> <select id="city"> <option selected="selected">請選擇...</option> </select> <button type="submit" id="where_submit" disabled="disabled">提交</button> </form> </body> <script type="text/javascript"> var provinces=['遼寧','北京','上海','吉林','浙江']; //最新添加的省份放在最前面 var choice=['請選擇...'] var zhejiang=['杭州','嘉興','寧波','紹興']; var shanghai=['金山','閘北','普陀','徐匯']; var jilin=['長春','遼源','吉林','四平']; var beijing=['海淀','朝陽','東城','西城']; var liaoning=['沈陽','大連','盤錦','錦州','遼陽','鞍山'] //城市排序由后到前 var citys=new Array; citys[0]=choice; citys[1]=zhejiang; citys[2]=jilin; citys[3]=shanghai; citys[4]=beijing; citys[5]=liaoning; function add_option(select,option){ var target=document.getElementById(select); for (var i = option.length - 1; i >= 0; i--) { var add_option=document.createElement("option"); add_option.text=option[i]; target.add(add_option,null); target.lastChild.setAttribute("name",option[i]); } } add_option("province",provinces); document.getElementById("province").addEventListener("change",function(){ var selevted_province=document.getElementById("province"); var selected_city=document.getElementById("city"); for (var i = selevted_province.length - 1; i >= 0; i--) { selected_city.remove(i); } var selected=selevted_province.selectedIndex; if (selected==0) { add_option("city",citys[0]); document.getElementById("where_submit").setAttribute("disabled","ture"); }else{ add_option("city",citys[selected]); document.getElementById("where_submit").removeAttribute("disabled"); } }) </script> </html>
感謝各位的閱讀!關(guān)于“js如何實現(xiàn)省份下拉菜單效果”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
名稱欄目:js如何實現(xiàn)省份下拉菜單效果
分享路徑:http://jinyejixie.com/article36/iishpg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機、ChatGPT、動態(tài)網(wǎng)站、商城網(wǎng)站、、網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)