指定されたドメインに一致する URL を選択するための完全に機能する jQuery コードがあります。
jQuery( document ).ready( function( $ ) {
$('a').each(function() {
var href = $(this).attr('href');
if(this.hostname && this.hostname == 'example.com')
{
$(this)
.removeAttr('target')
.attr('rel', 'nofollow')
.attr('title', href)
}
});
});
ご覧のとおり、target 属性が削除され、rel nofollow が追加され、title が URL 値に設定されます。上記のコードを変更して、クエリ文字列を URL 値 (href 値) に追加する別の機能を追加する方法に問題があります。次のクエリ文字列の引数/値を追加するとします。
argument1='test1'
argument2='test2'
最終的な URL は次のようになります。
http://example.com/?argument1=test1&argument2=test2
または、例のドメインの任意のページ
http://example.com/any_page/?argument1=test1&argument2=test2
jQueryプラグインを使わずにこれを行う簡単な方法はありますか?