tell html doc not to load js if mobile device

后端 未结 5 1107
悲&欢浪女
悲&欢浪女 2020-12-09 05:13

I\'m cheekily seeking a line or two of code on the fly here:

Could someone be kind enough to provide code to place in the head section of html doc that says if mobil

5条回答
  •  感动是毒
    2020-12-09 05:44

    The best way to do it would be to add it around whole the actual mobile script inside the "foo.js" file. The DOM will have trouble loading the tag if you suddenly append it.

    if (screen && screen.width > 480) {
     // Whole your script here
    }
    

    Instead of:

    if (screen && screen.width > 480) {
      document.write('
    
                                     
                  
提交回复
热议问题