标签: jquery
例如,其中一个有这个:
<div id="hat" re="mouse" > text here </div> $(.#hat).re = ??????
答案 0 :(得分:3)
$('#hat').attr('re');
会得到它
$('#hat').attr('re', 'blah');
将设置
答案 1 :(得分:2)
如果要更新re属性的值,只需写下:
$('#hat').attr('re', 'newValue');