Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the all-in-one-seo-pack domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/lienketvn/lienket.vn/public_html/public/blog/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the rocket domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/lienketvn/lienket.vn/public_html/public/blog/wp-includes/functions.php on line 6114
Hướng dẫn fix lỗi phải click vào link 2 lần mới chuyển trang trên iphone - Blog - Lienket.vn

Hướng dẫn fix lỗi phải click vào link 2 lần mới chuyển trang trên iphone

Chúng tôi có một câu hỏi được đưa ra vào ngày hôm trước trên ShopTalk về các liên kết neo thông thường trên iOS và một số tình huống kỳ lạ khi bạn không thể chỉ nhấn vào chúng một lần để truy cập liên kết, mà phải nhấn liên kết hai lần. Bản thân tôi đã trải qua điều này và khá bối rối.

Ban đầu, tôi dự đoán nó liên quan đến javascrip nhưng thực ra không phải. Đây là một vấn đề do hiệu ứng :hover trên css gây ra cho các thiết bị cảm ứng. Mặc dù vậy, chúng ta lại ko gặp phải vấn đề này trên các thiết bị android.

Cách xóa bỏ hoặc bỏ qua hiệu ứng :hover trên các thiết bị cảm ứng

Bạn có thể loại bỏ tất cả các quy tắc CSS có :hoversử dụng Javascript. Điều này có ưu điểm là không phải đụng đến CSS và tương thích ngay cả với các trình duyệt cũ hơn.

function hasTouch() {
  return 'ontouchstart' in document.documentElement
         || navigator.maxTouchPoints > 0
         || navigator.msMaxTouchPoints > 0;
}
if (hasTouch()) { // remove all the :hover stylesheets
  try { // prevent exception on browsers not supporting DOM styleSheets properly
    for (var si in document.styleSheets) {
      var styleSheet = document.styleSheets[si];
      if (!styleSheet.rules) continue;
      for (var ri = styleSheet.rules.length - 1; ri >= 0; ri--) {
        if (!styleSheet.rules[ri].selectorText) continue;
        if (styleSheet.rules[ri].selectorText.match(':hover')) {
          styleSheet.deleteRule(ri);
        }
      }
    }
  } catch (ex) {}
}

Chúc bạn thành công!

5/5 - (1 bình chọn)