「jQuery」removeAttr( )で指定した属性を削除するサンプル
構文
(.element).removeAttr(属性)
説明
指定要素から指定した属性を削除します。
サンプルコード
<a href="xxxx" target="_top">test</a>
$(“button").click(function(){
$(“a").removeAttr(“target").attr('href’,’example.com’)
})
Coding Changes the World
構文
(.element).removeAttr(属性)
説明
指定要素から指定した属性を削除します。
サンプルコード
<a href="xxxx" target="_top">test</a>
$(“button").click(function(){
$(“a").removeAttr(“target").attr('href’,’example.com’)
})