百度地图 Infowidow 内容(content 下标签) 点击事件
Posted 圐圙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了百度地图 Infowidow 内容(content 下标签) 点击事件相关的知识,希望对你有一定的参考价值。
需要监听 infowindow 的打开事件 ,查看InfoWindow API
实现 html 点击效果 代码
var infoWindow = that.createDangerInfoWindow(jsonData); infoWindow.addEventListener("open", function() { $(".basic-ul li").click(function () { alert("aa"); $(this).css({ "background-color": "#fff", "color": "blue", "border:": "0" }).siblings("li").css({"background-color": "#a9dbf6", "color": "#000", "border:": "1"}); var acc = $(this).index(); $(this).parent().prev().children().eq(acc).siblings().addClass("displayy"); $(this).parent().prev().children().eq(acc).removeClass("displayy"); }); });
以上是关于百度地图 Infowidow 内容(content 下标签) 点击事件的主要内容,如果未能解决你的问题,请参考以下文章