2011-11-01 56 views
8

我正在構建一個Google Maps應用程序,我想從我的HTML中讀出元數據,如schema.org所指定的那樣,以繪製我的地圖標記。如何使用jQuery(schema.org微格式)查找和讀取元數據?

例如:

<li itemscope="itemscope" itemtype="http://schema.org/LocalBusiness"> 
...some html... 
    <div class="geo" itemprop="geo" itemscope="itemscope" itemtype="http://schema.org/GeoCoordinates"> 
    <meta itemprop="latitude" content="43.681505" /> 
    <meta itemprop="longitude" content="-79.294455" /> 
    </div> 
</li> 

有一種簡單的方法來查詢出不通過一切有循環的緯度和經度值?

回答

18

你試過嗎?

jQuery(function($){ 
    var latitude = $('.geo meta[itemprop="latitude"]').attr("content"); 
    var longitude = $('.geo meta[itemprop="longitude"]').attr("content"); 
}); 
3

你可以在數據像這樣:

$('meta[itemprop="latitude"]').attr('content')

相關問題