在HTML5中,開發者可以自行在標籤上定義data-元素

例如

<button id="bu" data-say="Hello!!!">Button</button>

而jQuery也提供了.data()這個函式,可以直接取得自訂data-值

$('#bu').click(function(){
	alert( $(this).data('say')  );

	//寫入
	$(this).data('say','hahaha');
});
Categories: jQuery