How to disable HTML links

后端 未结 14 1634
刺人心
刺人心 2020-11-22 13:00

I have a link button inside a which I have to disable. This works on IE but not working in Firefox and Chrome. Structure is - Link inside a <

14条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 13:17

    To disable link to access another page on touch device:

    if (control == false)
      document.getElementById('id_link').setAttribute('href', '#');
    else
      document.getElementById('id_link').setAttribute('href', 'page/link.html');
    end if;
    

提交回复
热议问题