ホームページ > 記事 > ウェブフロントエンド > ドキュメントとウィンドウの幅と高さを取得する jQuery のメソッド object_jquery
この記事の例では、jQuery がドキュメントとウィンドウ オブジェクトの幅と高さを取得する方法を説明します。皆さんの参考に共有してください。詳細は以下の通りです。
<!DOCTYPE html> <html> <head> <script src="js/jquery.min.js"> </script> <script> $(document).ready(function(){ $("button").click(function(){ var txt=""; txt+="Document width/height: " + $(document).width(); txt+="x" + $(document).height() + "\n"; txt+="Window width/height: " + $(window).width(); txt+="x" + $(window).height(); alert(txt); }); }); </script> </head> <body> <button>Display dimensions of document and window</button> </body> </html>
この記事が皆さんの jQuery プログラミングに役立つことを願っています。