AngularJS ng-点击没有控制器的外部链接?

时间:2015-05-25 06:39:16

标签: angularjs

我需要在点击单选按钮时重定向外部链接。 有没有可能没有使用控制器

2 个答案:

答案 0 :(得分:3)

使用纯javascript

<input type="radio"class="two" onclick="location.href='http://example.com'"/>

请在jsfiddle中引用我的例子

http://jsfiddle.net/parthipans/d4jd3ap8/

答案 1 :(得分:2)

使用原生javascript。

<input type="radio" onclick="location.href = 'www.yoursite.com';"/>