「jQuery入門」属性atrrメソッドの使い方
htmlコード
<a href="http://172.17.2.xxx/arkagme" class="test">this is a test</a>
1.属性atrr追加
$('a’).attr('id’, 'usrid’);
2.属性attr変更
newcft = $('a’).attr('class’, 'test22’);
3.属性attr取得
var cft = $('a’).attr('class’);
console.log(cft);