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/
先謝謝了!
無線電和下行無線電之間有鏈接嗎?當他們談論父母和孩子時,他們會談論文檔中的嵌套元素。你的收音機列表是分開的div。他們之間沒有任何聯繫。 – TCHdvlp