Possible Duplicate:
Get list of data-* attributes using javascript/jQuery的jQuery遍歷HTML5數據屬性
我有一系列的對象,所有的類似於這樣的:
<a data-type="file" data-path="/some/path" data-size="849858">Link</a>
我想創建一個函數來拉動每一個數據的動態屬性,所以如果我添加類似「數據圖標」或其他任何數量的屬性的功能仍返回所有數據的數組屬性,如:
{
"type" : "file",
"path" : "/some/path",
...
}
'$。每個($( 「#elementID」)數據(),函數(K,V){的console.log(K + ':' + V);}。 );' – adeneo
謝謝,當我搜索時沒有找到重複。 – Fluidbyte