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();
});
});
答案 0 :(得分:0)
您的div属性错误。
div id=
到
div class=