1. ホーム
  2. jquery

JQueryのデータセレクタが.dataで更新されない

2023-08-31 01:23:02

質問

基本的に、あるページに読み込まれたdivに data-test 属性でページに読み込まれ、その値を jquery の .data('test') で要素を選択することができなくなりました。 $('div[data-test="newValue"]')

var howMany = $('.t[data-test="test"]').length;
$('.result').html('start there are ' + howMany + ' divs with data "test"<br /><br />');
setTimeout(function() {
  $('#one, #three').data('test', 'changed');
}, 500);
setTimeout(function() {
  var test = $('.t[data-test="test"]').length,
    changed = $('.t[data-test="changed"]').length;
  $('.result').append('there are ' + test + ' divs still with data "test"<br /><br />there are ' + changed + ' divs still with data "changed"<br /><br />');
}, 1000);
setTimeout(function() {
  $('.t').each(function() {
    $('.result').append('div #' + $(this).attr('id') + ' has the test data of: ' + $(this).data('test') + '<br /><br />');
  });
}, 1500);
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class="t" id="one" data-test="test">1</div>
<div class="t" id="two" data-test="test">2</div>
<div class="t" id="three" data-test="test">3</div>
<div class="t" id="four" data-test="test">4</div>
<div class="result"></div>

どのように解決するのですか?

jQuery .data()には、最初に data- 属性の値が入力されますが、それを設定すると、関連する新しい値がメモリに保存されるだけです。DOMの属性を変更するわけではありません。属性を変更するには、使用する必要があります。

$('#one, #three').attr('data-test', 'changed');

ドキュメントは http://api.jquery.com/jQuery.data/