我正在使用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>


当前回答

对于那些希望动态删除和重新启用工具提示的人,可以使用dispose和enable方法。看到.tooltip(处理)。

其他回答

我有一个跨度。我想获取属性data-txt-lang的值,该值是使用定义的。

$(document).ready(function ()
{
    <span class="txt-lang-btn" data-txt-lang="en">EN</span>
    alert($('.txt-lang-btn').attr('data-txt-lang'));
});

使用jQuery:

$(".myClass").load(function() {
  var myId = $(this).data("id");
  $('.myClass').attr('id', myId);
});

HTML

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

JavaScript

$(this).data().value;

or

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

50岁:

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

对我来说,使用自己的id访问data属性比较容易。

$("#Id").data("attribute");

函数 myFunction(){ alert($(“#button1”).data(“sample-id”)); } <script src=“https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js”></script> <button type=“button” id=“button1” data-sample-id=“gotcha!” onclick=“myFunction()”> ClickHere </button>