调用函数onClick并从元素的data- *属性传递一个值

时间:2012-04-04 07:59:34

标签: javascript jquery

我有这样的链接:

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

我怎样才能这样做,当我点击链接然后调用一个函数传递数据值中包含的值?

function refreshGrid(value) { }

3 个答案:

答案 0 :(得分: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
});

答案 1 :(得分:1)

var linkValue = $("li a").attr("data-value");

编辑:更好的例子

$("li a").click(function () {
    var myDataValue = $(this).attr("data-value");
    refreshGrid(myDataValue);
});

答案 2 :(得分:1)

here's a quick sample

$('ul').on('click','a[data-value]',function(){
    refreshGrid(this.getAttribute('data-value'));
    return false;
});