当前位置: 编程技术>jquery
Jquery操作radio的小例子
来源: 互联网 发布时间:2014-10-04
本文导语: 有如下的radio单选内容: 代码示例: Jquery插件教程 Jquery学习 PHP学习 以上html代码中,3个radio的name属性和一个text的name属性都是“study”。 Jquery操作radio的例子: 代码示例: $(function(){ $('#tijiao').click(function(){ if ($("i...
有如下的radio单选内容:
代码示例:
Jquery插件教程
Jquery学习
PHP学习
Jquery学习
PHP学习
以上html代码中,3个radio的name属性和一个text的name属性都是“study”。
Jquery操作radio的例子:
代码示例:
$(function(){
$('#tijiao').click(function(){
if ($("input:[name=study]:radio:checked").length == 0){
alert("请选择您想学习的知识");
return false;
}
var study = $("input:[name=study]:radio:checked").val();
alert("谢谢!您选择的是" + study);
})
$("#set_jqeury_study").click(function(){
var $button = $(this);
$("input:[name=study]:radio").each(function(){
if (this.value == $button.attr('title')){
this.checked=true;
}
})
})
$("#view_input_text").click(function(){
alert($("input[name=study]:text").val());
})
})
$('#tijiao').click(function(){
if ($("input:[name=study]:radio:checked").length == 0){
alert("请选择您想学习的知识");
return false;
}
var study = $("input:[name=study]:radio:checked").val();
alert("谢谢!您选择的是" + study);
})
$("#set_jqeury_study").click(function(){
var $button = $(this);
$("input:[name=study]:radio").each(function(){
if (this.value == $button.attr('title')){
this.checked=true;
}
})
})
$("#view_input_text").click(function(){
alert($("input[name=study]:text").val());
})
})
代码说明:
$(“input:[name=study]:radio:checked”),取得的是所有name属性为“study”而且已经被选中的radio的jquery对象,通过判断他的length 是否等于0,就可以知道这个radio选项是否有一个被选中了。
$(“input[name=study]:text”),取得的是name属性为“study”的text输入框的jquery对象。