27/2/2021 | 11:19:35 |
Đăng nhập | Đăng ký |
var image = new Image();
// Anh (co the la URL hoac anh da duoc ma hoa base64)
image.src = URL_IMAGE;
// Anh duoc tai thanh cong
image.onload = function () {
alert("OK");
}
// Anh loi
image.onerror = function () {
alert("Error");
}
// alert(image);
// Anh loi
$('#img').error(function() {
alert('Error');
});