data-id 속성을 얻는 방법?


813

jQuery quicksand 플러그인을 사용하고 있습니다. 클릭 한 항목의 데이터 ID를 가져 와서 웹 서비스에 전달해야합니다. 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
신규 방문자에 대한 공지 : JQuery의 .live () 메소드는
.on

3
경고에서 #을 제거해야합니다. 필요하지 않습니다 :-)
Becs Carter

attr ( "# data-id"))가 잘못되었습니다. 수정 : attr ( "data-id"));
guido _nhcol.com.br_

@BruceAdams 이제는 더 이상 사용되지 않는 on()방법 을 사용하도록 질문을 편집하는 live()것이 좋습니다.
Rory McCrossan

답변:


1636

속성의 내용을 얻으려면 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는 을 사용 하여 우편 번호에서 선행 0을 제거했기 때문에 사용해야했습니다 data().TFM은 "jQuery 1.4.3부터 HTML 5 데이터 속성은 자동으로 jQuery의 데이터 객체로 가져옵니다. ... 문자열을 변환하려는 모든 시도 부울, 숫자, 객체, 배열 및 null을 포함하는 JavaScript 값으로 변환합니다. 값이 숫자 표현으로 변경되지 않는 경우에만 값으로 변환됩니다 (예 : "1E02"및 "100.000"은 동일 함) 숫자 (숫자 값 100)로 변환하지만 변환하면 문자열로 남겨 지도록 표현이 변경됩니다. "
Wesley Murch

43
이것은 나를 위해 '정의되지 않은'을 반환합니다.
Foreever

4
.attr ()을 사용할 때 괄호 안의 텍스트가 사용자 정의 데이터 속성으로 설정 한 것과 일치해야한다는 점에 문제가있는 사람들에게는 주목할 가치가 있다고 생각합니다. 즉, 사용자 정의 데이터 속성이 data-volume 인 경우 .attr ( "data-volume")을 사용하여 참조해야합니다 . 또한 jQuery 1.4.3 이상에서 .data ()를 사용하면 대괄호 안의 텍스트 가 데이터 접두사 없이 사용자 정의 데이터 속성과 일치해야합니다 . 즉, 사용자 정의 데이터 속성이 data-volume 인 경우 .data ( "volume")을 사용하여 참조해야합니다 .
누가 복음

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

중요 사항. 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가 있습니까?
Harag

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 Patience

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

문제는 드롭 다운 또는 목록의 옵션 또는 선택한 옵션을 지정하지 않는 것입니다. 드롭 다운의 예는 데이터 속성 데이터 레코드를 가정합니다.

$('#select').on('change', function(){
        let element = $("#visiabletoID");
        element.val($(this).find(':selected').data('record'));
    });
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.