只是有关正确语法的一个快速问题。我只想在浏览器屏幕

<script type="text/javascript">
$(document).ready(function() {
  if ($(window).width() < 1100) {

    //load file

     }
  });
</script>


我想加载src =“ http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js,但找不到语法。

谢谢!

最佳答案

$(document).ready(function() {
    if ($(window).width() < 1100) {
       var newscript = document.createElement('script');
           newscript.type = 'text/javascript';
           newscript.async = true;
           newscript.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js';
       (document.getElementsByTagName('head')[0]
        || document.getElementsByTagName('body')[0]).appendChild(newscript);
    }
});

关于javascript - 根据浏览器大小加载文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12079135/

10-11 13:10