2010-04-28 44 views
1

我想在訪問者點擊我的谷歌地圖標記時顯示彈出框。當他們點擊標記時,我已經有了我要顯示的文本。CSS彈出框可在所有瀏覽器中運行

+2

所有瀏覽器上的一組?即使Lynx? – ceejayoz 2010-04-28 19:04:53

+0

@ceejayoz:你說Lynx? – Pops 2010-04-29 01:27:11

+0

'------------------' – Pops 2010-04-29 01:27:35

回答

1

如果您正在使用Google Maps實例,則它們已經是have conventions for that

+0

此外,第一個教程中還介紹了這一點:http://code.google.com/apis/ maps/articles/yourfirstmap.html 如果您使用v3 API,請參閱演示:http://code.google.com/apis/maps/documentation/v3/examples/infowindow-simple.html – ghoppe 2010-04-28 19:21:02

0

//假設標誌物標記的地圖

jQuery(markers).each(function(i,marker){ 

.click(function(){ 

    displayPoint(marker, i); 

} 
相關問題