Hide an html element using javascript only if browser is firefox

前端 未结 6 1767
没有蜡笔的小新
没有蜡笔的小新 2021-01-05 07:28

How can I hide a div with javascript if the browser is firefox only?

6条回答
  •  星月不相逢
    2021-01-05 08:12

    function  detectBrowser(){
      ....
    }
    
    hDiv = .... //getElementById or etc..
    
    if (detectBrowser() === "firefox"){
      hDiv.style.display = "none"
    }
    

提交回复
热议问题