Svg image element not displaying in Safari

前端 未结 4 547
自闭症患者
自闭症患者 2020-12-14 10:39

Safari browser (I\'m testing under windows) seems having problem in displaying Svg Image element.





4条回答
  •  粉色の甜心
    2020-12-14 10:56

    I just discovered this same problem when I checked an app I was working on in Safari, after having been using Chrome most of the time. I wrote this bit of TypeScript/jQuery code (easily enough turned into plain JavaScript) to solve the problem:

    export function setSvgHref(elem: JQuery, href: string) {
      elem.attr('href', href);
    
      if (isSafari()) {
        elem.each(function() {
          this.setAttributeNS('http://www.w3.org/1999/xlink', 'href', href);
        });
      }
    }
    

提交回复
热议问题