私はjQueryの次の行を持っていますが、を使用するのはやり過ぎのよう.each()
です。
$('span[data-private]').each(function () {
$(this).text($(this).attr("data-hidden"));
});
次のようなjQueryを作成するためのより良い方法はありますか?
// This doesn't work as $(this) refers to document not the current selector
// but it gives the idea of what I'm looking for. I want to reference the current
// selector
$('span[data-private]').text($(this).attr("data-hidden"));
よろしくお願いします!