Skip to main content

Các lỗi thường gặp

Viewport

<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">

Các đường liên kết không thể thu thập thông tin

  • Thay href="javascript:void(0);" bằng href="#" onclick="return false;"

Các phần tử liên kết không có tên có thể nhận rõ

  • Đối với thẻ a: Thêm aria-label: nội dung
  • Đối với thẻ button, input: Thêm title: nội dung

Không sử dụng trình nghe bị động để cải thiện hiệu suất cuộn

if (!f1genzPS) {
(jQuery.event.special.touchstart = {
setup: function (e, t, n) {
this.addEventListener("touchstart", n, {
passive: !t.includes("noPreventDefault"),
});
},
}),
(jQuery.event.special.touchmove = {
setup: function (e, t, n) {
this.addEventListener("touchmove", n, {
passive: !t.includes("noPreventDefault"),
});
},
});
}