1
4

2 に答える 2

2

クリックされた要素はthis. attr関数を使用できます。

var someValue = $(this).attr('someAttribute');
于 2012-10-14T14:05:36.787 に答える
2

使用attr()方法

$(".someClass").click(function(e) {
    e.preventDefault();
    // How to get value of someAttribute?
   alert( $(this).attr('someAttribute'));
});

デモ: http://jsfiddle.net/buC8k/

API リファレンス: http://api.jquery.com/attr/

于 2012-10-14T14:06:18.007 に答える