我需要添加错误弹出消息,但我真的无法找到如何执行此操作。你可以帮助我? 这是代码:
var p = document.querySelector('p');
var reversed = p.innerText.split('').reverse().join('');
p.innerText = reversed;
我尝试了一些错误功能的代码,但没有任何工作。
答案 0 :(得分:0)
您可以使用jQuery插件(如jquery-confirm(https://craftpip.github.io/jquery-confirm/)为您创建弹出窗口。
按照安装说明将插件添加到您的应用中,并将代码更改为以下内容:
if ($(current).attr("id") == "payment-page") {
$.ajax({
url: 'https://openiban.com/validate/' + $("#iban").val(),
success: function(data) {
if (data.valid) {
generatePDF(true);
run();
}
},
error: function(data) {
$.confirm({
title: 'Encountered an error!',
content: 'Error message',
type: 'red'
});
},
timeout: 3000
});
} else {
run();
}