How to create an HTML button that acts like a link?

后端 未结 30 3746
长发绾君心
长发绾君心 2020-11-21 04:18

I would like to create an HTML button that acts like a link. So, when you click the button, it redirects to a page. I would like it to be as accessible as possible.

30条回答
  •  盖世英雄少女心
    2020-11-21 05:15

    The only way to do this (except for BalusC's ingenious form idea!) is by adding a JavaScript onclick event to the button, which is not good for accessibility.

    Have you considered styling a normal link like a button? You can't achieve OS specific buttons that way, but it's still the best way IMO.

提交回复
热议问题