みかづきブログ その3

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

👆

引越し先はこちらです!

2015-04-24から1日間の記事一覧

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

jQuery の is をつかえば matches のようなことができることを教えてもらいました。 JavaScript (function(win, doc, $) { "use strict"; console.log(doc.getElementById("hello").matches(".world")); // => true console.log($("#hello").is(".world")); …