下面是一个单选的span标签:
<span style="width: 500px;">
<input type="radio" name="chart" value="overAll" checked="checked"/>搜狗
<input type="radio" name="chart" value="interfaceUse" style="margin-left:35px"/>百度
<input type="radio" name="chart" value="area" style="margin-left:35px"/>火狐
</span>
当改变checked属性时在当前页面实现跳转js实现如下
$('input[type=radio][name=chart]').change(function() {
if (this.value == 'overAll') {
window.location.href="www.sougou.com";
}else if (this.value == 'interfaceUse') {
window.location.href="www.baidu.com";
}else if(this.value == 'area'){
window.location.href="www.firefox.com.cn";
}
});
因为使用的是本地路径所以跳转不进去,你们可以不使用本地路径
标签:www,value,window,href,radio,location,跳转,单选 From: https://blog.51cto.com/u_16281588/8790156