私はjQueryのクイックサンドプラグインを使用しています。クリックしたアイテムのデータIDを取得し、それをWebサービスに渡す必要があります。 data-id属性を取得するにはどうすればいいですか?ソート済みアイテムのclickイベントを再バインドするために.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>
属性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
は機能します。
既存のネイティブの 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');
重要な注意点。 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
古い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
誰も言って驚いた:
<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/ /
_ html _
<span id="spanTest" data-value="50">test</span>
_ js _
$(this).data().value;
または
$("span#spanTest").data().value;
ANS:50
私のために働く!
$ .dataを使用します - http://api.jquery.com/jquery.data/ /
//Set value 7 to data-id
$.data(this, 'id', 7);
//Get value from data-id
alert( $(this).data("id") ); // => outputs 7
var id = $(this).dataset.id
私のために働く!
独自のid
を使ってdata属性にアクセスするのは私にとっては少し簡単です。
$("#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>
このコードはデータ属性の値を返します。例えば: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");
//これによりデータIDが変更されます - > a2
$(this).data("id");
// data-idの値を取得する - > a2
jQueryを使う:
$( ".myClass" ).load(function() {
var myId = $(this).data("id");
$('.myClass').attr('id', myId);
});
ツールチップを動的に削除して再度有効にする場合は、dispose
およびenable
メソッドを使用できます。 https://getbootstrap.com/docs/4.0/components/tooltips/#tooltipdispose を参照してください