国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > AJAX > 正文

ajax實(shí)現(xiàn)無(wú)刷新省市縣三級(jí)聯(lián)動(dòng)

2024-09-01 08:28:00
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

本文實(shí)例為大家分享了ajax實(shí)現(xiàn)無(wú)刷新省市縣三級(jí)聯(lián)動(dòng)的具體代碼,供大家參考,具體內(nèi)容如下

效果圖:

實(shí)現(xiàn)代碼:

1、html:

<html><head>  <title></title>    <style type="text/css">    select    {      width: 150px;    }  </style>  <script src="js/Jquery1.7.js" type="text/javascript"></script>  <script type="text/javascript">    $(function () {      $.ajax({        type: "post",        contentType: "application/json",        url: "WebService1.asmx/GetProvince",        data: "{}",        success: function (result) {          var stroption = '';          for (var i = 0; i < result.d.length; i++) {            stroption += '<option value=' + result.d[i].provinceID + '>';            stroption += result.d[i].provincename;            stroption += '</option>';          }          $('#seprovince').append(stroption);        }      })      $('#seprovince').change(function () {       $('#secity option:gt(0)').remove();        $('#searea option:gt(0)').remove();        $.ajax({          type: "post",          contentType: "application/json",          url: "WebService1.asmx/GetCItyByPro",          data: "{proid:'" + $(this).val() + "'}",          success: function (result) {            var strocity = '';            for (var i = 0; i < result.d.length; i++) {              strocity += '<option value=' + result.d[i].cityID + '>';              strocity += result.d[i].cityname;              strocity += '</option>';            }            $('#secity').append(strocity);          }        })      })      $('#secity').change(function () {        $('#searea option:gt(0)').remove();        $.ajax({          type: "post",          contentType: "application/json",          url: "WebService1.asmx/GetAreaByCity",          data: "{cityid:'" + $(this).val() + "'}",          success: function (result) {            var stroarea = '';            for (var i = 0; i < result.d.length; i++) {              stroarea += '<option value=' + result.d[i].areaID + '>';              stroarea += result.d[i].areaname;              stroarea += '</option>';            }            $('#searea').append(stroarea);          }        })      })    })  </script></head><body> <table>    <tr>      <td>        用戶名      </td>      <td>        <input id="Text1" type="text" />      </td>    </tr>    <tr>      <td>        密碼      </td>      <td>        <input id="Text2" type="text" />      </td>    </tr>    <tr>      <td>        確認(rèn)密碼      </td>      <td>        <input id="Text3" type="text" />      </td>    </tr>    <tr>      <td>        郵箱      </td>      <td>        <input id="Text4" type="text" />      </td>    </tr>    <tr>      <td>        地址      </td>      <td>        <select id="seprovince">          <option>--請(qǐng)選擇--</option>        </select>        省        <select id="secity">          <option>--請(qǐng)選擇--</option>        </select>市        <select id="searea">          <option>--請(qǐng)選擇--</option>        </select>縣      </td>    </tr>  </table></body></html>            
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 客服| 南昌市| 东城区| 阿克陶县| 乐至县| 平定县| 青河县| 花莲县| 曲周县| 德清县| 桐庐县| 宁安市| 黎城县| 西贡区| SHOW| 久治县| 安康市| 三穗县| 理塘县| 景德镇市| 绥化市| 桂阳县| 濉溪县| 聂荣县| 淮南市| 河源市| 宁蒗| 长兴县| 沁阳市| 岗巴县| 舟曲县| 赣榆县| 防城港市| 阜康市| 镇沅| 甘洛县| 奉贤区| 平遥县| 南投县| 彭州市| 中山市|