例如 有2个<input type="radio" id="r1" name="aa" value="1"/>
<input type="radio" id="r2" name="aa" value="2"/>
<a href="add.aspx?"></a>
现在想通过url传递被选中的那个radio的值,请问href中该怎么写呢??
需要借助JS吗?
大半夜在线等 多谢多谢
用js获取form表单的值,然后可以用ajax提交将你要提交的数据提交到后台
通过<form>的get请求就可以了,不需要用到javascript的哦。
<form action="你的href" method="get"> <input type="radio" name="a" value="1"/> <input type="radio" name="a" value="2"/> <button type="submit">传值</button> </form>