如何在href属性中提取查询参数?

时间:2014-05-07 01:55:17

标签: javascript jquery href

<a class="test" href="www.abc.com?test1=1|6&test2=2">img</a> <a class="test" href="www.abc.com?test2=1&test3=2">img</a> <a class="test" href="www.abc.com?test3=1&test4=2">img</a>

我有一组具有相同类名的锚元素,我需要提取一个特定的参数,比如test1或test4,这个值可以是动态的,用新值更新href参数 < / p>

我如何在jquery中做到这一点?

任何想法?

1 个答案:

答案 0 :(得分:0)

function getUrlParameter(sParam)
{
  $('.test').each( function() {
      var href= $(this).attr('href');
      //if href contain sParam ....... you should know that :) 
    );
 });
}​

String test1Param = getUrlParameter("test1");

希望这有帮助:)