3

私はこのようなリンクを持っています:

<li><a href="#" data-value="Codes">Get codes</a></li>
<li><a href="#" data-value="Product">Get products</a></li>

リンクをクリックすると関数が呼び出され、data-valueに含まれている値を渡すようにするにはどうすればよいですか?

function refreshGrid(value) { }
4

3 に答える 3

4

次のことを試してください。

$('li > a[href="#"][data-value]').click(function (e) { // On click of all anchors with a data-value attribute and a href of # that are immediate children of li elements (nb this selector can be modifed to suit your needs)
  e.preventDefault(); // prevent the default (navigate to href)
  refreshGrid($(this).data('value')); // call your refreshGrid function with the value contained in the 'data-value' attribute
});
于 2012-04-04T08:03:13.917 に答える
1
var linkValue = $("li a").attr("data-value");

編集:より良い例

$("li a").click(function () {
    var myDataValue = $(this).attr("data-value");
    refreshGrid(myDataValue);
});
于 2012-04-04T08:02:33.537 に答える
1

これが簡単なサンプルです

$('ul').on('click','a[data-value]',function(){
    refreshGrid(this.getAttribute('data-value'));
    return false;
});
于 2012-04-04T08:07:34.853 に答える