() {
$('#city_switch').click(function(e) {
e.preventDefault();
$('#city_menu_box').show();
});
$('.close-city').click(function() {
$('#city_menu_box').hide();
});
$(document).mouseup(function(e) {
var container = $('#city_menu_box');
if (!container.is(e.target) && container.has(e.target).length === 0 && !$(e.target).is('#city_switch')) {
container.hide();
}
});
// 搜索类型下拉菜单控制(与V2模板一致)
$("#header_search_types li > a").each(function() {
$(this).click(function() {
$('#header-search-select').text($(this).text());
$('#header-search-frm').find('[name="module_flag"]').val($(this).attr('data'));
$('#header_search_types').hide();
});
});
// 需要下拉菜单JS控件初始化
$(".J_select_list").powerFloat();
});