function changearea(url, divid, isDefaultArea) { //原本还有个:selareaid参数 var postStr = ""; // $.ajax({ // type: "POST", // contentType: "application/x-www-form-urlencoded", // url: url, // data: postStr, // error: function () { // alert("您所请求的页面有异常,请刷新重试。"); // }, // success: function (msg) { // if (msg === "") { // $("#" + divid).html("没有结果"); // } // else { // $("#" + divid).html(msg); // if (divid === "areaid2") { // $("#areaid3").html(""); // } // //$("#" + divid).val(selareaid); // } // if (isDefaultArea) { // var defaultAreaID = $('#txtDefaultAreaID').val(); // $('#Area1List1').val(defaultAreaID); // $('#Area2List2').val(defaultAreaID); // } // } // }); } $(document).ready(function () { //首页热销产品切换 $("[tab]").click(function () { $("[tab]").removeClass("active"); $("[tab]").eq($(this).index()).addClass("active"); $(this).parents().parents().find(".div1,.div2").hide(); $(this).parents().parents().find("." + $(this).attr("tab")).show(); }); // 导航下拉 $(".ndown").hover(function () { $(".navchild").show(); $(this).addClass("active"); }, function () { $(".navchild").hide(); $(this).removeClass("active"); }); //地址切换 $(".area").click(function () { $(".setcity").show(); }); $(".sbut2 ").click(function () { $(".setcity").hide(); }); $(".p_tab li").hover(function() { $(".p_tab li").removeClass("active").eq($(this).index()).addClass("active"); $(".p_link").removeClass("show").eq($(this).index()).addClass("show"); }); $('.select-city').on('click', function (e) { $('.city-bg').removeClass('none'); }); $('.city-close').on('click', function (e) { $("#citySeachKey").val(""); $("#citypop-tip-no").hide(); $('.city-bg').addClass('none'); }); });