如何获得data-id属性?


812

我正在使用jQuery流沙插件。我需要获取单击项的数据ID,并将其传递给Web服务。如何获得data-id属性?我正在使用该.on()方法将已绑定项目的click事件重新绑定。

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


57
通知新访问者:不推荐使用JQuery的.live()方法,而推荐使用.on()
dendini 2013年

3
您应该从警报中删除#,不需要它:-)
Becs Carter 2014年

attr(“#data-id”))错误。已更正:attr(“ data-id”));
guido _nhcol.com.br_

@BruceAdams,不建议使用现在不建议使用的on()方法来编辑问题live(),此问题吸引了很多访问者。
罗里·麦克罗斯

Answers:


1635

要获取属性的内容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会起作用。


7
我必须使用,attr()因为jQuery正在使用剥离邮政编码中的前导零data(),TFM说:“从jQuery 1.4.3起,HTML 5的data-属性将自动插入到jQuery的数据对象中。...尝试进行转换字符串的所有尝试。转换为JavaScript值(包括布尔值,数字,对象,数组和null)。只有在不更改值表示形式的情况下,该值才会转换为数字。例如,“ 1E02”和“ 100.000”等效作为数字(数字值为100),但是将其转换会改变其表示形式,因此它们将保留为字符串。”
Wesley Murch 2014年

43
这为我返回了“未定义”。
Foreever 2014年

4
虽然对某些人来说很明显,但我认为对于那些对此有疑问的人来说值得注意的是,在使用.attr()时,方括号内的文本必须与您设置为自定义数据属性的内容相匹配。即,如果自定义数据属性是data-volume,则必须使用.attr(“ data-volume”)进行引用。而且,使用jQuery 1.4.3向上和使用。数据(),括号内的文字必须自定义数据属性相匹配,而不数据-前缀。即,如果自定义数据属性为data-volume,则必须使用.data(“ volume”)进行引用。
路加福音

111
对于那些报告无效的人,请确保您的属性仅包含小写字母。例如,“ data-listId”应为“ data-listid”。有关原因,请参阅stackoverflow.com/questions/10992984/…
WindChimes 2014年

2
$(this).data().id //returns 123
Dem Pilafian 2015年

170

如果我们想使用现有的本地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');

阅读本文档


90

重要的提示。请记住,如果您通过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

好点...是否有data()。refresh从属性刷新数据?
哈拉格

1
这是动态更改和访问数据属性值的重要点。
Motahar Hossain


19

没人惊讶提到:

<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/


2
非常好的答案。非常感谢。
Ruberandinda耐心

13

的HTML

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

JS

$(this).data().value;

要么

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

ANS:50

为我工作!




11

使用自己的属性访问数据属性id对我来说有点容易。

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

function 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>


7

这段代码将返回数据属性的值,例如:data-id,data-time,data-name等。

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

js:

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

//获取data-id的值-> a1

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

//这将更改data-id-> a2

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

//获取data-id的值-> a2




0

我有跨度。我想使用已定义的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'));
});

0

问题是您未指定下拉列表或列表的选项或选定选项,这是下拉列表的示例,我假设数据属性为data-record。

$('#select').on('change', function(){
        let element = $("#visiabletoID");
        element.val($(this).find(':selected').data('record'));
    });
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.