function getData(){
return $.ajax({
type: "POST",
url: "getdata.php",
});
}
getData.done(function(data){
alert(data);
});
async function getData() {
return new Promise(function(resolve, reject) {
$.ajax({
type: "POST",
url: "getdata.php",
success: function (msg) {
resolve(msg);
},
error: function (response) { // Данные не отправлены
reject('Ошибка. Данные не отправлены.');
}
});
});
}
let data = await getData();
document.querySelector('table').addEventListener('click', ({ target: t }) => {
const next = t.matches('input[type="button"]') && t.parentNode.nextElementSibling;
const input = next && next.querySelector('input');
input && (input.type = 'text');
});
SELECT * FROM `{таблица}` WHERE id > $LastId ORDER BY `id` ASC LIMIT 10