ホームページ >ウェブフロントエンド >jsチュートリアル >シェアしておきたい、よく使うJavaScriptのメソッドと関数まとめ(パート2)_JavaScriptスキル
この記事では、JS を学習している友人に役立つことを願って、よく使用される Javascript 関数をいくつか集めました。
22. 要素を置き換えます
$(document).ready(function() { $('#id').replaceWith(' <DIV>I have been replaced</DIV> '); });
23. jQuery遅延読み込み機能
$(document).ready(function() { window.setTimeout(function() { // do something }, 1000); });
24.ワード削除機能
$(document).ready(function() { var el = $('#id'); el.html(el.html().replace(/word/ig, "")); });
25. jquery オブジェクト コレクションに要素が存在するかどうかを確認します
$(document).ready(function() { if ($('#id').length) { // do something } });
26. DIV 全体をクリック可能にします
$(document).ready(function() { $("div").click(function(){ //get the url from href attribute and launch the url window.location=$(this).find("a").attr("href"); return false; });// how to use<DIV><A href="index.html">home</A></DIV>});
27. IDとクラスの変換
ウィンドウサイズを変更する場合、IDとクラスを切り替えます
$(document).ready(function() { function checkWindowSize() { if ( $(window).width() > 1200 ) { $('body').addClass('large'); } else { $('body').removeClass('large'); } } $(window).resize(checkWindowSize); });
28. クローンオブジェクト
$(document).ready(function() { var cloned = $('#id').clone();// how to use<DIV id=id></DIV>});
29. 要素を画面の中央に配置します
$(document).ready(function() { 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; } $("#id").center(); });
30. 独自のセレクターを作成します
$(document).ready(function() { $.extend($.expr[':'], { moreThen1000px: function(a) { return $(a).width() > 1000; } }); $('.box:moreThen1000px').click(function() { // creating a simple js alert box alert('The element that you have clicked is over 1000 pixels wide'); }); });
31. 要素の数を数えます
$(document).ready(function() { $("p").size(); });
32. 独自の箇条書きを使用する
$(document).ready(function() { $("ul").addClass("Replaced"); $("ul > li").prepend("‒ "); // how to use ul.Replaced { list-style : none; } });
33. Google ホスト上の Jquery クラス ライブラリを参照します
//Example 1 <SCRIPT src="http://www.google.com/jsapi"></SCRIPT> <SCRIPT type=text/javascript> google.load("jquery", "1.2.6"); google.setOnLoadCallback(function() { // do something }); </SCRIPT><SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></SCRIPT> // Example 2:(the best and fastest way) <SCRIPT type=text/javascript src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></SCRIPT>
34. Jquery (アニメーション) エフェクトを無効にする
$(document).ready(function() { jQuery.fx.off = true; });
35. 他の Javascript ライブラリとの競合の解決策
$(document).ready(function() { var $jq = jQuery.noConflict(); $jq('#id').show(); });
以上がこの記事の全内容です。気に入ったらぜひ集めてください。