Heim > Fragen und Antworten > Hauptteil
Fügen Sie eine Warnung zur Popup-Ebene von Bootstrap hinzu und brechen Sie sie nach dem Öffnen des Modals ab. Nach dem zweiten Öffnen des Modals wird das Alarmereignis zweimal ausgelöst!
$("#" + data[i].id).on('click', function () {
var that = this;
$("#uploadmodal").modal('show');
$("#submit").on('click', function () {
var val = $('#sykmmc option:selected').text();
var opV = $('#sykmmc option:selected').val()
if(opV=="10086"){
alert('您还未选择科目!');
return false;
}
$(that).parent().find("span").text(val)
if($(that).text()=="匹配"){
$(that).text("修改")
}
if($(that).parent().parent().find("td").eq(4).text()=="未匹配") {
$(that).parent().parent().find("td").eq(4).text("已匹配")
}
$("#uploadmodal").modal('hide');
})
}
Jedes Mal, wenn Sie das Modal abbrechen und erneut öffnen, wird das Modal noch einmal benachrichtigt als zuvor
PHPz2017-05-19 10:25:55
1把$("#submit").on('click',function(){})
改成$("#submit").unbind('click').bind('click',function(){})
试试
2.把$("#submit")放到$("#" + data[i].id).on('click',function(){});
的后面也可以. 原因是你多次注册了.