0

讨厌乞讨,但我很难过。在这个地图网站上,我无法在弹出信息窗口中使用 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;
}

……无济于事。我在这里设置了一个超级简单的测试(取自这个简短的教程),效果很好。我可以从哪里开始调试?关于可能出现什么问题的任何建议?可根据要求提供 FTP 凭据!非常感谢您提前...

快速链接:jQuery gMap 插件| 标记绘图 js | 主题js |

4

0 回答 0