How do I make a link unclickable?

前端 未结 11 685
伪装坚强ぢ
伪装坚强ぢ 2020-12-08 19:37

Is there some CSS property or something that I can use with my anchor tag so as to make it unclickable or I HAVE to do stuff in code behind to get what I want?

11条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 20:30

    If the anchor element is a server side element, remove the href attribute. anchor.attributes.remove("href");

提交回复
热议问题