jQuery UI标签样式很好 - 现在我怎么能让它们工作?

时间:2012-07-22 04:18:46

标签: jquery jquery-ui google-maps-api-3 jquery-ui-tabs jquery-gmap3

讨厌乞讨,但我很难过。在map website上,我无法在弹出的InfoWindow中获取UI标签,以便在“电影”,“概要”和“位置”之间切换。使用jQuery gmap V3,最新版本的jQuery和jQuery UI。在addMarker函数的gmap InfoWindow中创建UI选项卡:

$('#map').gmap('addMarker', markers[i]).click(function() {
    var title = $j(this).attr('title');
    $('.tabs').tabs({
        create: function(e, ui){
            console.log('here');
        },
        show: function(e, ui){
            console.log('showing'); 
        },
        select: function(e, ui){
            console.log('WHY U NO WORK');
        }
    }); // init tabs
    $('#map').gmap('openInfoWindow', {'content': $('#'+title).children('.content').html() }, this);
});

在信息窗口中创建的标签可以正确设置样式,但不会切换。我已尝试过“左侧修复”标签:

.ui-tabs .ui-tabs-hide {
    position: absolute !important;
    left: -10000px !important;
    display:block !important;
}

......无济于事。我有一个超级简单的测试设置over here(摘自short tutorial),效果很好。我在哪里可以开始调试?有什么可能是错的建议吗? FTP信息可根据要求提供!非常感谢你提前......

快速链接:jQuery gMap plugin | marker plotting js | theme js |

0 个答案:

没有答案