"); }, success: function (msg) { $(#City_List).html(msg); //將結果呈現在Div裡 $(#City_List ul li dl dt label).bind("click", function () { zip = $(this).attr("zip"); SelectArea("1", zip); }); Bind_Selectmenu(); }, error: function (msg) { $(#City_List).html(Ajax request 發生錯誤 + msg); } }); } function SelectArea(Show, CityID) { $.ajax({ type: "POST", url: /Function/Ajax/SelectCity.aspx, data: { EventType: "2", Show: Show, AreaID_List_var: $(#AreaID_List).val(), CityID: CityID, rnd: Math.random() }, beforeSend: function () { //$(#City_List).html(""); }, success: function (msg) { var splits...