Disable tooltips using css

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

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

10条回答
  •  走了就别回头了
    2021-02-12 16:23

    $('a[title]').each(function (index, el) {
        var $tooltip = $('
    ') .css({ position: "absolute" , background: "url('../Images/space.gif')" , width: $(el).width() , height: $(el).height() , top: 0 , left: 0 , zIndex: 300 , border: "1px solid red" }) .on('click', function (event) { $(el).click(); }); $(this).after($tooltip); })

提交回复
热议问题