任何人都可以为我提供一个示例代码,用于在infowindow内的div元素的jquery动画?

时间:2014-01-10 19:03:46

标签: javascript jquery html css google-maps

infowindow是谷歌地图apiv3。任何帮助,将不胜感激。我只想要一个演示代码。 我正在尝试以下代码,但它无法正常工作。我不知道问题出在哪里

var contentstring = '<div id="box" style="background-color:red; height:100px; width:100px;">' + '</div>' + '<input type="button" id="but">'

var infowindow = new google.maps.InfoWindow({
content: contentstring

});

这是jquery动画的代码

<script>
$(document).ready(function()
{
    $("#but").hover(function()
    {
        $("#box").fadeOut();
    },function()
            {
                    $("#box").fadeIn();
            });
});

1 个答案:

答案 0 :(得分:0)

您的div属性错误。

div id=

div class=