📜  jquery get data-* - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:01.428000             🧑  作者: Mango

代码示例1
// Fetching data
var fruitCount = $(this).data('fruit');
OR 
// If you updated the value, you will need to use below code to fetch new value 
// otherwise above gives the old value which is intially set.
// And also above does not work in ***Firefox***, so use below code to fetch value
var fruitCount = $(this).attr('data-fruit');

// Assigning data
$(this).attr('data-fruit','7');