วิธีรับแอตทริบิวต์ data-id


813

ฉันใช้ปลั๊กอินดูด jQuery ฉันต้องการรับ data-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>


57
ประกาศสำหรับผู้เข้าชมใหม่: วิธี. live () ของ JQuery เลิกใช้แล้วโดยสนับสนุน.
on

3
คุณควรลบ # ออกจากการแจ้งเตือนคุณไม่ต้องการ :-)
Becs Carter

attr ("# data-id")) ผิด แก้ไขแล้ว: attr ("data-id"));
guido _nhcol.com.br_

@BruceAdams มันอาจคุ้มค่าที่จะแก้ไขคำถามเพื่อใช้on()วิธีการตามที่live()เลิกใช้แล้วและคำถามนี้ได้รับผู้เข้าชมไม่กี่คน
Rory McCrossan

คำตอบ:


1637

ในการรับเนื้อหาของแอททริบิว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 (ซึ่งรวมถึง booleans, ตัวเลข, วัตถุ, อาร์เรย์และ null) ค่าจะถูกแปลงเป็นตัวเลขหากทำเช่นนั้นจะไม่เปลี่ยนการแสดงค่าของตัวอย่างเช่น "1E02" และ "100.000" เทียบเท่า เป็นตัวเลข (ค่าตัวเลข 100) แต่การแปลงจะเปลี่ยนการแสดงของพวกเขาเพื่อให้พวกเขาถูกทิ้งไว้เป็นสตริง "
Wesley Murch

43
นี่คือการส่งคืน 'undefined' สำหรับฉัน
Foreever

4
ในขณะที่บางคนเห็นได้ชัดฉันคิดว่ามันคุ้มค่าที่จะสังเกตเห็นว่าคนที่มีปัญหากับเรื่องนี้เมื่อใช้. atr () ข้อความในวงเล็บต้องตรงกับสิ่งที่คุณตั้งไว้เป็น data-attribute ที่กำหนดเองของคุณ เช่นถ้าแอตทริบิวต์ข้อมูลที่กำหนดเองเป็นข้อมูลปริมาณคุณต้องอ้างอิงโดยใช้.attr ( "ข้อมูลปริมาณ") และกับ jQuery 1.4.3 ขึ้นไปและใช้ .data () ข้อความในวงเล็บจะต้องตรงกับข้อมูลแอตทริบิวต์ของคุณเองโดยไม่ต้องDATA-คำนำหน้า เช่นถ้าแอตทริบิวต์ข้อมูลที่กำหนดเองเป็นข้อมูลปริมาณคุณต้องอ้างอิงโดยใช้.data ( "ปริมาณ")
ลุค

111
สำหรับผู้ที่รายงานว่าใช้งานไม่ได้ให้ตรวจสอบว่าแอตทริบิวต์ของคุณมีตัวอักษรพิมพ์เล็กเท่านั้น ตัวอย่างเช่น "data-listId" ควรเป็น "data-listid" ดูstackoverflow.com/questions/10992984/…ด้วยเหตุผลว่าทำไม
WindChimes

2
หรือ$(this).data().id //returns 123
Dem Pilafian

170

หากเราต้องการดึงหรืออัปเดตแอตทริบิวต์เหล่านี้โดยใช้JavaScriptที่มีอยู่แล้วเราสามารถทำได้โดยใช้เมธอด getAttribute และ setAttribute ดังที่แสดงด้านล่าง:

ผ่านจาวาสคริปต์

<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

โน๊ตสำคัญ. โปรดทราบว่าหากคุณปรับdata- แอตทริบิวต์แบบไดนามิกผ่าน JavaScript จะไม่ส่งผลต่อ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 เพื่อรีเฟรชข้อมูลจาก attribute หรือไม่?
Harag

1
เป็นจุดสำคัญสำหรับการเปลี่ยนแปลงและเข้าถึงค่า data data แบบไดนามิก
Motahar Hossain

56

หากคุณไม่กังวลเกี่ยวกับเบราว์เซอร์ IE รุ่นเก่าคุณสามารถใช้ชุดข้อมูล HTML5 API ได้

HTML

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

JS

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


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;

ตอบ: 50

ใช้งานได้สำหรับฉัน!




11

การเข้าถึง data data ด้วยตัวมันเอง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 data เช่น data-id, data-time, data-name เป็นต้น .. ฉันได้แสดง id

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

ปัญหาคือคุณไม่ได้ระบุตัวเลือกหรือตัวเลือกที่เลือกของรายการแบบหล่นลงหรือรายการนี่คือตัวอย่างสำหรับแบบเลื่อนลงฉันถือว่าข้อมูลบันทึกข้อมูลคุณลักษณะ

$('#select').on('change', function(){
        let element = $("#visiabletoID");
        element.val($(this).find(':selected').data('record'));
    });
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.