試一下這個
// do Add button options
$("#Add").click(function() {
var i = ($('#secondaryEmails >tbody >tr').length)+1;
$("#secondaryEmails >tbody tr:first").clone().find("input,select").each(function() {
//if(this).(':radio').
$(this).attr({
'id': function(_, id) {
return id + i;
},
'name': function(_, name) {
if($(this).attr("type") == "radio")
return name;
return name + i;
},
'value': ''
});
}).end().appendTo("#secondaryEmails >tbody").show();
});
// do update button options
$("#update").click(function() {
// find and display selected row data
alert('in Update');
var rowCount = $('#secondaryEmails >tbody >tr').length;
});
// do row double click options
// do row selected by either focusing on email or ship type elements
我錯過了這一點:$( 「#secondaryEmails> TBODY TR:第一」)。克隆()找到( 「輸入,選擇」)每個(函數(){ 這個:if($(this).attr(「type」)==「radio」)。一旦我得到了,其餘的就會落到位!!!再次感謝您的幫助和支持。會很好地工作。 – radi8