我是新手,我正在尝试创建自定义单选框,父母可以在其中接收孩子的姓名和选定的值属性,然后从父母的孩子中删除 name 属性。
$(".radio").parent().addClass("radio-buttons"); //add styling
$(".radio").parent().attr("name", $(this).next().attr("name")); // supposed to assign names to parents
$(".radio").removeAttr("name"); //remove name after assignment to parent
$(".radio").click(function(){
$(this).parent().find("a").css({
background:"",
"box-shadow": ""
}); //reset any previous selections
$(this).parent().attr("value", $(this).attr("value")); //assign parent the selected value
$(this).css({
background:"#005fc3",
"box-shadow": "2px 3px 5px #004793 inset"
}); // Styling for selected state
});
我一直试图让父母接受他们孩子的姓名属性。这就是我所拥有的:http: //jsfiddle.net/Jdpsv/
提前致谢!