3

我有一个完整的 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 插件的简单方法?

4

1 回答 1

2

检查jQuery.param()对象和数组

.serialize()用于表单数据

示例:http: //jsfiddle.net/DqXYn/

于 2013-01-22T03:13:03.693 回答