根據後端,我的HTML模板將被添加多次。所以,我想選擇主題併發送所選元素的ID。怎麼做? 現在我只能選擇,之後我也無法取消選擇它。 幫助!!能夠在html中選擇和取消選擇多個元素並跟蹤已選擇的內容
我的jQuery代碼選擇:
$(document.body).click(function(evt){
var clicked = evt.target;
var currentID = clicked.id || "No ID!";
document.getElementById(currentID).style.backgroundColor = "#00afbc";
//$(clicked).html(currentID);
})
我的HTML代碼:
<div class="container-fluid" id="container-<%=no%>">
<div id="circle" style="background:<%= colorCode %>;" class="col-xs-3">
<div class="text" style="color:<%= textColor %>;">
<%=p ercent %>
</div>
<div class="percent" style="color:<%= textColor %>;">%</div>
</div>
<div id="sideText">
<div class="checkbox col-xs-9 everything-checkbox">
<!--input type="checkbox" class="toggle" /-->
<div id="currentID">
<%=currentID %>
</div>
<div id="question">
<%=t otalQues %> Questions Attempts
</div>
</div>
</div>
</div>
<hr style="width: 100%; color: #d9d9d9; height: 1px; background-color:#d9d9d9; margin-top:0px;margin-bottom:0px;" />
您想在哪裏發送所選元素的ID?到服務器或其他功能。 –
現在說另一種功能..從那裏我將能夠發送到服務器 –