ChatGPT解决这个技术问题 Extra ChatGPT

如何获取 data-id 属性?

我正在使用 jQuery Quicksand 插件。我需要获取单击项目的数据 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")); });

新访客注意事项:JQuery 的 .live() 方法已被弃用,取而代之的是 .on()
您应该从警报中删除 #,您不需要它:-)
attr("#data-id")) 是错误的。更正:attr("data-id"));
@BruceAdams 可能值得编辑问题以使用 on() 方法,因为 live() 现在已弃用,并且此问题吸引了很多访问者。
对于 selectoption 元素,使用:stackoverflow.com/a/12750327/7389293

K
Kaushik Thanki

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


这为我返回了“未定义”。
对于那些报告它不起作用的人,请确保您的属性仅包含小写字母。例如“data-listId”应该是“data-listid”。有关原因,请参见 stackoverflow.com/questions/10992984/…
感谢您提到小写部分...... 8 年后,这对我有所帮助。我犯了同样的骆驼套管错误。
L
Lalit Kumar Maurya

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

Read this documentation


由于非常好的 support of the dataset API,JavaScript 部分应该被认为是过时的。
P
Peter Mortensen

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

P
Peter Mortensen

如果您不关心旧的 Internet Explorer 浏览器,您也可以使用 HTML5 dataset API

HTML

<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


这是最好的方式,我喜欢 OOPS 方式,不使用字符串 l
P
Peter Mortensen

您还可以使用:

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


J
Jiří

这段代码将返回数据属性的值。例如: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:这将改变数据ID - > a2

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

JQuery:获取数据ID的值-> a2

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

Z
Zoe stands with Ukraine

HTML

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

JavaScript

$(this).data().value;

或者

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

答案:50


P
Peter Mortensen

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

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

function myFunction(){ alert($("#button1").data("sample-id")); }


o
ofir_aghai
var id = $(this).dataset.id

为我工作!


P
Peter Mortensen

我使用 $.data

//Set value 7 to data-id
$.data(this, 'id', 7);

//Get value from data-id
alert( $(this).data("id") ); // => outputs 7

P
Peter Mortensen

使用 jQuery:

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

K
Kamil Kiełczewski

尝试

this.dataset.id

$("#list li").on('click', function() { alert( this.dataset.id ); });


a
arman amirkamali

对于纯js

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

虽然此代码段可能会解决问题,但它没有解释为什么或如何回答问题。请include an explanation for your code,因为这确实有助于提高您的帖子质量。请记住,您正在为将来的读者回答问题,而这些人可能不知道您的代码建议的原因。
H
HoldOffHunger

问题是您没有指定下拉列表或列表的选项或选定选项,这是下拉列表的示例,我假设数据属性数据记录。

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

P
Peter Mortensen

对于希望动态删除并重新启用工具提示的用户,您可以使用 disposeenable 方法。请参阅 .tooltip('dispose')


P
Peter Mortensen

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