如何获取data-id属性?

我正在使用jQuery流沙插件。我需要获取单击项目的data-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>

2109586 次浏览

要获取属性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检索或更新这些属性,那么我们可以使用getAt的和setAt的方法,如下所示:

通过javascript

<div id='strawberry-plant' data-fruit='12'></div>
<script>// 'Getting' data-attributes using getAttributevar plant = document.getElementById('strawberry-plant');var fruitCount = plant.getAttribute('data-fruit'); // fruitCount = '12'
// 'Setting' data-attributes using setAttributeplant.setAttribute('data-fruit','7'); // Pesky birds</script>

通过jQuery

// Fetching datavar 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 valuevar fruitCount = $(this).attr('data-fruit');
// Assigning data$(this).attr('data-fruit','7');

阅读此留档

我使用$没有数据

//Set value 7 to data-id$.data(this, 'id', 7);
//Get value from data-idalert( $(this).data("id") ); // => outputs 7

如果您不担心旧的Internet Explorer浏览器,您也可以使用HTML5数据集API

超文本标记语言

<div id="my-div" data-info="some info here" data-other-info="more info here">My Awesome Div</div>

javascript

var myDiv = document.querySelector('#my-div');
myDiv.dataset.info // "some info here"myDiv.dataset.otherInfo // "more info here"

演示:http://html5demos.com/dataset

完整的浏览器支持列表:http://caniuse.com/#feat=dataset

var id = $(this).dataset.id

为我工作!

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

超文本标记语言

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

javascript

$(this).data().value;

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

答:50

您还可以使用:

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

使用自己的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>

使用jQuery:

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

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

我已经为id显示了它:

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

JavaScript:获取data-id的值->a1

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

jQuery:这将更改data-id->a2

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

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

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

对于那些希望动态删除和重新启用工具提示的人,您可以使用disposeenable方法。请参阅工具提示

我有一个跨度。我想取属性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'));});

问题是你没有指定下拉列表或列表的选项或选定选项,这里是一个下拉列表的例子,我假设一个数据属性data-记录。

$('#select').on('change', function(){let element = $("#visiabletoID");element.val($(this).find(':selected').data('record'));});

试试看

this.dataset.id

$("#list li").on('click', function() {alert( this.dataset.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 >>CLICK ME<<" /></a></li></ul>

对于纯js

 let btn = document.querySelector('.your-btn-class');btn.addEventListener('click',function(){console.log(this.getAttribute('data-id'));})