jQuery は軽量の JavaScript ライブラリであり、Web デザイナーや開発者の間で非常に有名なクライアント側 HTML スクリプトの 1 つであり、創造的で美しい Web 開発を支援する便利なプラグインやテクノロジーが数多くあります。 WEBページ。
今日は、Web サイトのレイアウトとアプリケーションをより創造的かつ機能的にするのに役立つ、jQuery ユーザー向けのヒントをいくつか紹介します。
1. リンクを新しいウィンドウで開きます
次のコードを使用します。リンクをクリックすると、新しいウィンドウで開きます。
$(document).ready(function() { //select all anchor tags that have http in the href //and apply the target=_blank $("a[href^='http']").attr('target','_blank'); });
2. 列を同じ高さに設定します
次のコードを適用して、WEB アプリケーションの各列の高さを待機させます。
<div class="equalHeight" style="border:1px solid"> <p>First Line</p> <p>Second Line</p> <p>Third Line</p> </div> <div class="equalHeight" style="border:1px solid"> <p>Column Two</p> </div> <script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script> <script> $(document).ready(function() { equalHeight('.equalHeight'); }); //global variable, this will store the highest height value var maxHeight = 0; function equalHeight(col) { //Get all the element with class = col col = $(col); //Loop all the col col.each(function() { //Store the highest value if ($(this).height() > maxHeight) { maxHeight = $(this).height(); } }); //Set the height col.height(maxHeight); } </script>
3. jQuery プリロード画像
この小さなトリックにより、ページ上の画像の読み込み速度が向上します:
jQuery.preloadImagesInWebPage = function() { for (var ctr = 0; ctr & lt; arguments.length; ctr++) { jQuery("").attr("src", arguments[ctr]); } } // 使用方法: $.preloadImages("image1.gif", "image2.gif", "image3.gif"); // 检查图片是否被加载 $('#imageObject').attr('src', 'image1.gif').load(function() { alert('The image has been loaded…'); });
4. マウスの右ボタンを無効にします
$(document).ready(function() { //catch the right-click context menu $(document).bind("contextmenu", function(e) { //warning prompt - optional alert("No right-clicking!"); //delete the default context menu return false; }); });
5. タイマーを設定します
$(document).ready(function() { window.setTimeout(function() { // some code }, 500); });
6. サブ要素の数を計算します
<div id="foo"> <div id="bar"></div> <div id="baz"> <div id="biz"></div> <span><span></span></span> </div> </div> <script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> //jQuery code to count child elements $("#foo > div").size() alert($("#foo > div").size()) </script>
7. 要素をページの中央に配置します
<div id="foo" style="width:200px;height: 200px;background: #ccc;"></div> <script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script> <script type="text/javascript"> jQuery.fn.center = function() { this.css("position", "absolute"); this.css("top", ($(window).height() - this.height()) / 2 + $(window).scrollTop() + "px"); this.css("left", ($(window).width() - this.width()) / 2 + $(window).scrollLeft() + "px"); return this; } //Use the above function as: $('#foo').center(); </script>