如何在锚标记中传递单选按钮ID?

时间:2014-10-20 05:52:02

标签: javascript php

我有这样的记录列表

o 1 xxx yyy
o 2 xxx yyy
o 3 xxx yyy

如果我点击第一个记录收音机bhutton,则值为1传递给锚标签

    <?php foreach($model as $result) { ?>
        <tr>    
            <td>
                <input type="radio" name="pol_id" value="<?=$result['id']?>" />
                <?=$result['name']?>
            </td>
            <td><?=$result['country']?></td>
            <td><?=$result['state']?></td>
        </tr>
    <?php } ?>
    <tr>
        <td align="right">
            <a href="update?id=<?=$result['id']?>">Edit
        </td>
    </tr>

1 个答案:

答案 0 :(得分:0)

你需要使用javascript。

jQuery代码:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>$(function(){
  $('input:radio').change(function(){
    $('a').attr('href', 'update?id='+$(this).val()); // better if you add an id to anchor & then $('a#idofAnchor')
});

});</script>