「jQuery入門」attr()とremoveAttr()でhtmlのタグ要素の設定、削除

1.a要素に複数の属性を追加
$('a’).attr({
href: 'http://www.sample.com/introduction/notice.html’,
title: 'お知らせ’,
target: '_blank’
});

2.img要素に複数の属性を追加
$(function() {
$('img’).attr({alt: '出身’, title: '東京品川’, width: 320, height: 210});

});

3.div要素のid属性を削除
$('div’).removeAttr('id’);

jQuery

Posted by arkgame