如何更改自定义属性的内容(“值”)

时间:2015-06-10 16:51:56

标签: jquery html5 custom-attributes

我有以下HTML5自定义属性:

$(document).on('change', '.my_input', function() {
    $(this).attr('data-counted').val('Y');
});

如何在jquery中更改其值(从“N”到“Y”)?

这是我拥有的,但不起作用:

import time
import random

words = open("Words.txt","r")
WordList = []
for lines in words:

WordList.append(lines)
WordList=[line.rstrip('\n')for line in WordList]

print(WordList(0,2))

1 个答案:

答案 0 :(得分:2)

你可以使用

$(this).attr('data-counted','Y');

$(this).data('counted','Y');