我正在使用 jQuery 流沙插件。我需要获取单击项的数据 ID,并将其传递给 Web 服务。如何获得 data-id 属性?我正在使用.on()
方法重新绑定单击事件以进行排序。
$("#list li").on('click', function() {
// ret = DetailsView.GetProject($(this).attr("#data-id"), OnComplete, OnTimeOut, OnError);
alert($(this).attr("#data-id"));
});
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<ul id="list" class="grid">
<li data-id="id-40" class="win">
<a id="ctl00_cphBody_ListView1_ctrl0_SelectButton" class="project" href="#">
<img src="themes/clean/images/win.jpg" class="project-image" alt="get data-id" />
</a>
</li>
</ul>
要获取属性data-id
的内容(例如<a data-id="123">link</a>
),您必须使用
$(this).attr("data-id") // will return the string "123"
或.data()
(如果您使用更新的 jQuery> = 1.4.3)
$(this).data("id") // will return the number 123
并且data-
之后的部分必须是小写,例如data-idNum
将不起作用,而data-idnum
将起作用。
如果要使用现有的本机JavaScript检索或更新这些属性,则可以使用 getAttribute 和 setAttribute 方法来实现,如下所示:
通过 JavaScript
<div id='strawberry-plant' data-fruit='12'></div>
<script>
// 'Getting' data-attributes using getAttribute
var plant = document.getElementById('strawberry-plant');
var fruitCount = plant.getAttribute('data-fruit'); // fruitCount = '12'
// 'Setting' data-attributes using setAttribute
plant.setAttribute('data-fruit','7'); // Pesky birds
</script>
通过 jQuery
// 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');
重要的提示。请记住,如果您通过 JavaScript 动态调整data-
属性 ,它将不会反映在data()
jQuery 函数中。您还必须通过data()
函数进行调整。
<a data-id="123">link</a>
js:
$(this).data("id") // returns 123
$(this).attr("data-id", "321"); //change the attribute
$(this).data("id") // STILL returns 123!!!
$(this).data("id", "321")
$(this).data("id") // NOW we have 321