一個textarea我在其中的內容將與每次複選框顯示在排序列表一個div。這些通過從數據庫中提取來顯示。現在我需要顯示選定複選框附近的內容。我做了什麼至今編輯jquery的彈出框
1) only one check box can be selected at a time
2) get the id of the check box which is selected stored to variable ids
3) then paragraph content id = "p"+checkbox id
的代碼是:
$(document).ready(function(){
$(':checkbox').bind('change', function() {
var thisClass = $(this).attr('class');
if ($(this).attr('checked')) {
$(':checkbox.' + thisClass + ":not(#" + this.id + ")").removeAttr('checked');
}
});
});
function edit_temp(prt){
var checkedAtLeastOne = false;
$('input[name="check_clinic"]').each(function() {
if ($(this).is(":checked")) {
checkedAtLeastOne = true;
ids = $(this).attr('id');
}
});
if(checkedAtLeastOne){
p_id ="p"+ids;
alert(p_id);
}
else{
alert('Please select any clinical Interpretation');
}
}
到目前爲止,這是可以正常使用。但現在我需要在彈出窗口中的文本區域中顯示<p>
標籤的內容,其ID爲p_id
。然後編輯文本,並通過單擊彈出框的更新按鈕,必須在db中更新內容。
誰能幫我找到了一個解決方案。
js請稍候。 – 2014-10-08 13:01:38