1

我是新手,我正在尝试创建自定义单选框,父母可以在其中接收孩子的姓名和选定的值属性,然后从父母的孩子中删除 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/

提前致谢!

4

1 回答 1

0

您不能将value属性添加到 a div,而是可以使用data-value

$(this).parent().data("value", $(this).attr("value"));

或您希望的任何其他绰号,只要 HTML 标记是data-moniker并且您通过.data('moniker')

于 2013-08-12T08:16:19.103 回答