我正在使用jQuery Quicksand插件。我需要得到点击项目的数据id,并将其传递给一个webservice。

如何获得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, data-time, data-name等。

我为id显示了它:

<a href="#" id="click-demo" data-id="a1">Click</a>

获取data-id -> a1的值

$(this).data("id");

这将改变data-id -> a2

$(this).data("id", "a2");

JQuery:获取data-id -> a2的值

$(this).data("id");

其他回答

var id = $(this).dataset.id

对我有用!

你还可以使用:

<select id="selectVehicle">
    <option value="1" data-year="2011">Mazda</option>
    <option value="2" data-year="2015">Honda</option>
    <option value="3" data-year="2008">Mercedes</option>
    <option value="4" data-year="2005">Toyota</option>
</select>

$("#selectVehicle").change(function () {
    alert($(this).find(':selected').data("year"));
});

下面是工作示例:https://jsfiddle.net/ed5axgvk/1/

要获得属性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可以。

HTML

<span id="spanTest" data-value="50">test</span>

JavaScript

$(this).data().value;

or

$("span#spanTest").data().value;

50岁:

重要的注意。请记住,如果您通过JavaScript动态调整data-属性,它将不会反映在data() jQuery函数中。你还必须通过data()函数来调整它。

<a data-id="123">link</a>

JavaScript:

$(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