我需要在点击单选按钮时重定向外部链接。 有没有可能没有使用控制器
答案 0 :(得分:3)
使用纯javascript
<input type="radio"class="two" onclick="location.href='http://example.com'"/>
请在jsfiddle中引用我的例子
答案 1 :(得分:2)
使用原生javascript。
<input type="radio" onclick="location.href = 'www.yoursite.com';"/>