953

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"));
});
<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>

4

16 に答える 16

1881

属性の内容を取得するには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ます。

于 2011-03-15T09:46:42.943 に答える
201

既存のネイティブ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');

このドキュメントを読む

于 2014-01-06T04:58:17.950 に答える
110

重要な注意点。data- JavaScript を使用して属性を動的に調整すると、 jQuery 関数には反映されないことに注意してください。関数でもdata()調整する必要があります。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
于 2015-05-29T15:13:15.547 に答える
26

以下も使用できます。

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

于 2016-08-20T07:14:43.613 に答える
15

HTML

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

JavaScript

$(this).data().value;

また

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

ANS: 50

于 2015-08-04T16:48:15.530 に答える
12

私は$.dataを使用します:

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

//Get value from data-id
alert( $(this).data("id") ); // => outputs 7
于 2014-10-21T13:00:33.567 に答える
4

試す

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>

于 2020-06-10T13:56:03.643 に答える