Disable tooltips using css

后端 未结 10 974
隐瞒了意图╮
隐瞒了意图╮ 2021-02-12 15:33

Is there a way to disable the tooltips of the tag in css?

10条回答
  •  执笔经年
    2021-02-12 16:13

    I'm afraid that just isn't feasible. You can, however, use Javascript to strip out a link's title which may allow you to do what you want:

    document.getElementById('aid').title = "";
    

    should do the trick.

提交回复
热议问题