js實(shí)現(xiàn)全國(guó)省市二級(jí)聯(lián)動(dòng)下拉菜單
來(lái)源:懂視網(wǎng)
責(zé)編:小OO
時(shí)間:2020-11-27 21:50:09
js實(shí)現(xiàn)全國(guó)省市二級(jí)聯(lián)動(dòng)下拉菜單
js代碼部分。html代碼部分。<;head>;<;meta http-equiv=";Content-Type";content=";text/html;charset=utf-8";/>;<;title>;全國(guó)城市二級(jí)聯(lián)動(dòng)<;/title>;<;style type=";text/css";>;body{ background:#EEEEEE;margin:0;padding:0;font-family:";微軟雅黑";.Arial.Helvetica.sans-serif;}a{ color:#006600;text-decoration:none;}<。
導(dǎo)讀js代碼部分。html代碼部分。<;head>;<;meta http-equiv=";Content-Type";content=";text/html;charset=utf-8";/>;<;title>;全國(guó)城市二級(jí)聯(lián)動(dòng)<;/title>;<;style type=";text/css";>;body{ background:#EEEEEE;margin:0;padding:0;font-family:";微軟雅黑";.Arial.Helvetica.sans-serif;}a{ color:#006600;text-decoration:none;}<。

本文實(shí)例為大家分享了js實(shí)現(xiàn)二級(jí)聯(lián)動(dòng)下拉菜單的具體代碼,供大家參考,具體內(nèi)容如下
js代碼部分:
html代碼部分:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>全國(guó)城市二級(jí)聯(lián)動(dòng)</title>
<style type="text/css">
body{ background:#EEEEEE;margin:0; padding:0; font-family:"微軟雅黑", Arial, Helvetica, sans-serif; }
a{ color:#006600; text-decoration:none;}
a:hover{color:#990000;}
.top{ margin:5px auto; color:#990000; text-align:center;}
.info select{ border:1px #993300 solid; background:#FFFFFF;}
.info{ margin:5px; text-align:center;}
.info #show{ color:#3399FF; }
.bottom{ text-align:right; font-size:12px; color:#CCCCCC; width:1000px;}
</style>
</head>
<body>
<div class="top">
<h1>全國(guó)城市二級(jí)聯(lián)動(dòng)</h1>
</div>
<div class="info">
<div>
<select id="s_province" name="s_province"></select>
<select id="s_city" name="s_city" ></select>
<script class="resources library" src="area.js" type="text/javascript"></script>
<script type="text/javascript">_init_area();</script>
</div>
</div>
</body>
</html>
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com
js實(shí)現(xiàn)全國(guó)省市二級(jí)聯(lián)動(dòng)下拉菜單
js代碼部分。html代碼部分。<;head>;<;meta http-equiv=";Content-Type";content=";text/html;charset=utf-8";/>;<;title>;全國(guó)城市二級(jí)聯(lián)動(dòng)<;/title>;<;style type=";text/css";>;body{ background:#EEEEEE;margin:0;padding:0;font-family:";微軟雅黑";.Arial.Helvetica.sans-serif;}a{ color:#006600;text-decoration:none;}<。