动态href使用单选按钮

时间:2010-04-20 10:28:06

标签: javascript jquery radio-button href

有没有办法使用单选按钮创建动态href?

radio = value1
radio = value2
radio = value3

<a href="test.php?value=radio">

1 个答案:

答案 0 :(得分:0)

我想知道你想做什么,但是你可以:

$(function(){
  $('input[type="radio"]').click(function(){
    if ($(this).is(':checked'))
    {
       $('a').attr('href', 'test.php?value' + $(this).val()).text($(this).val()).appendTo($('body'));
    }
  });
});