通过jQuery为按钮分配ID?

时间:2015-04-27 19:08:06

标签: jquery html dom button

我想为按钮分配ID,但我不知道该怎么做,因为我无法通过HTML为它添加ID。例如,我设置data-show-refresh="true"然后会出现刷新按钮(绿色按钮),但我不知道如何通过jQuery为它添加ID。 以下是示例:http://jsfiddle.net/e3nk137y/1411/

2 个答案:

答案 0 :(得分:1)

在你的情况下,你可以简单地写出你的代码:

$('button [name="refresh"]').attr('id', 'yourDynamicId');

答案 1 :(得分:0)

试试这个:

$('[data-field="name"]').eq(0).attr('id', 'foobar');