// 門市廣告 ;(function($) { if($('.store-banner').children().length > 1) { $('.store-banner').owlCarousel({ items: 1, loop: true, autoplay: 5000, margin: 10, dots: false, nav: true, navText: ['', ''], }) } function ajax_rack_detail(rack_id){ $.post('/tw/store/ajax/ajax_get_rack_data-p.php', {ID :rack_id}, function(h){ console.log(h) $("#data_name").attr('class',h.TStore); $("#map").html(h.Google_Map); $("#rack_pic").attr('src',h.Pic_Path); $("#class_name").html(h.className); $("#data_name").html(h.Name); $("#address").html(h.Address); $("#tel").html(h.Tel); $("#open").html(h.Open); $("#rack_content").html(h.Content); }, 'json'); } $('.item').on('click', '.view_detail', function(event) { var rack_id = $(this).attr('rack_id'); ajax_rack_detail(rack_id); }); $("#rack_class,#city_id").on("change",function(){ if($(this).attr('id') == 'rack_class'){ $("select[id='city_id']").val(-1); } $("#Search_Rack").submit(); }); })($)