Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用世界地图,我想"www.google.com"在点击门槛时打开,可以吗?,
"www.google.com"
我试图修改传单库。
没有好的方法可以做到这一点,但您可以使用 clickevents 创建解决方法。
看看你映射了什么 html-id。
$('#mapid_2').on('click',function(){ $('.leaflet-popup').on('click',function(e){ window.open('https://www.google.com','_blank'); }); })