javascript – Benachrichtigung zur Bootstrap-Popup-Ebene hinzufügen
天蓬老师
天蓬老师 2017-05-19 10:23:55
0
2
474

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

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

Antworte allen(2)
PHPzhong

1把$("#submit").on('click',function(){}) 改成$("#submit").unbind('click').bind('click',function(){})试试

2.把$("#submit")放到$("#" + data[i].id).on('click',function(){});的后面也可以. 原因是你多次注册了.

習慣沉默

不是说不建议弹多层的弹窗么,我们产品经理说这样用户体验不好……

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage