次のjquery構文がsrcの属性値を設定することを知っています
$(this).closest('img.button').attr('src', '/images/button.png');
しかし、jQueryスクリプトで使用するために「src」属性の値を取得または取得するにはどうすればよいですか?
同様に、2番目のパラメーターを指定しないでください。
$(this).closest('img.button').attr('src');
パラメータを1つだけ指定すると、ゲッター.attr(...)
として機能します。
2つのパラメーターを指定すると、セッター.attr(...)
として機能します。
後で値を削除する場合は、次のようにします。
$(this).closest('img.button').removeAttr('src');
のjQueryドキュメントへのリンクは次のとおりです$.attr()
。
attr は getter および setter 関数です。ドキュメントはこちら: http://api.jquery.com/attr/
属性を取得:
$(this).closest('img.button').attr('src');
設定属性:
$(this).closest('img.button').attr('src', '/images/button.png');