首页javascriptwindowjQuery HTML Element - 如何获取窗口宽度

jQuery HTML Element - 如何获取窗口宽度

我们想知道如何获取窗口宽度。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script type='text/javascript'>
$(window).load(function(){
    $(document).ready(function(){
        console.log($(window).width());
        if ($(window).width() > 1000) {
            console.log("detected larger than 1000px"); 
        }
    });
});
</script>
</head>
<body>
</body>
</html>