みかづきブログ その3

本ブログは更新を終了しました。通算140万ユーザーの方に観覧頂くことができました。長い間、ありがとうございました。

👆

引越し先はこちらです!

jQuery の isメソッドでセレクタにマッチするか調べる

jQuery の is をつかえば matches のようなことができることを教えてもらいました。


JavaScript

(function(win, doc, $) {

    "use strict";
    
    console.log(doc.getElementById("hello").matches(".world")); // => true
    console.log($("#hello").is(".world")); // => true
    
    console.log(doc.getElementById("hello").matches("div")); // => true
    console.log($("#hello").is("div")); // => true
    
})(this, document, $);

DEMO





https://twitter.com/ki_230/status/651331561338441729

ツイッターやってます!