jquery选中事件,radio jquery选择事件
jquery 单击table行事件和radio的选中事件冲突
首先你写的这个就有问题,你点击radio的时候实际上已经选中了,但事件冒泡到了tr,又执行了一次click事件,所以就造成了选不中的情况,此外,单选框不像复选框,没必要判断是否处于选中状态,代码可以优化成这样:
成都做网站、成都网站制作服务团队是一支充满着热情的团队,执着、敏锐、追求更好,是创新互联的标准与要求,同时竭诚为客户提供服务是我们的理念。成都创新互联把每个网站当做一个产品来开发,精雕细琢,追求一名工匠心中的细致,我们更用心!
$("tr.resultTr").bind("click",function(){
$(this).find("input:radio").attr("checked","checked")
});
jquery checkbox 选中事件怎么写
input type="checkbox" id="checkbox1"/
$("#checkbox1").on("click", function(){
if($(this).is(":checked")){
//选中
}else {
//取消选中
}
});
jquery 获取radio的选中事件,radio默认选中时,显示其中一行tr,选中另外一个radio时,显示不同的tr记录
首先添加给radio添加绑定单击事件,可以直接使用onclick="",也可以用jquery绑定;
$(function() {
showCont();
$("input[name=price_type]").click(function() {
showCont();
});
});
function showCont(){
var normal = document.getElementById("price_type1");
var special = document.getElementById("price_type2");
if (normal.checked) {
$("#sellInfo2").hide();
$("#sellInfo1").show();
}
if (special.checked) {
$("#sellInfo1").hide();
$("#sellInfo2").show();
}
}
结果:
分享题目:jquery选中事件,radio jquery选择事件
本文路径:http://myzitong.com/article/dsdjhgi.html