我有一个完整的 jQuery 代码来选择与指定域匹配的 URL:
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)
}
});
});
如您所见,它将删除目标属性,添加 rel nofollow 并将标题设置为 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 插件的简单方法?