「jQuery入門」要素の属性を設定する方法
①属性の現在値を取得する
$('#cft’).attr('width’);
②既存の属性を削除する
// title属性を削除
$('#cft’).removeAttr('width’);
// 属性を削除
$('#cft’).removeAttr('width height’);
Coding Changes the World
①属性の現在値を取得する
$('#cft’).attr('width’);
②既存の属性を削除する
// title属性を削除
$('#cft’).removeAttr('width’);
// 属性を削除
$('#cft’).removeAttr('width height’);