Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
カスタムイベントのjQueryのbindメソッドで正規表現を使用することは可能ですか?何かのようなもの...
$(selector).bind(myRegex, function(){})
たとえば、2つのカスタムイベントがありCustomerAdd、CustomerDeleteそれをアナウンスできる場合は、をリッスンできるようにしたいと思いCustomer*ます。
CustomerAdd
CustomerDelete
Customer*
正規表現を使用して特定の DOM 要素のみを選択しようとしている場合は、.filter() メソッドを使用して、正規表現ロジックを実行して一致しない要素を除外する関数を渡すことができます。
$(selector).filter(function (index) { return /myregex/.test($(this).attr("id")); })
そうしないと、何をしようとしているのかはっきりしません...