を子孫、jQueryのすべてではなく、私はマークアップを以下している特定のタイプの
<div custom="">
<div>
<template>
<a custom=""> (anything inside template should not be selected)
</a>
</template>
</div>
</div>
<a custom=""></a>
私はカスタム属性ではなく、内部の「テンプレート」ノードで何かを持っているすべての要素を選択します。私は、次の試してみましたが、動作しません
、
$(":not(template *) [custom]")
$(":not(template) [custom]")
$(":not(template) *[custom]")
$(":not(template *)[custom]")
$(":not(template)").filter('[custom]')) // this does not work either...
$(":not(template,template *)").filter('[custom]')) // this does not work either...
しかし、これは動作しません。これを行う簡単な方法はありますか?私はクエリの要素を取得していません。
私は知っている、テンプレートは標準的なHTMLではありません。しかし、私のカスタムタグは、マークアップの検証が不可能な非標準のスクリプトではなく、html内に適切なタグを持つことができます。
btw代わりに、 'data-custom =" "'のようなデータ属性を使用しないでください。 –
まあ、データ属性を使用するライブラリがたくさんあり、入力には多すぎる文字が必要ですが、データのカスタムをすべての属性にプレフィックスを付けると、非常に長くなりますし、カスタムを使用することに決めました(私たちの命名規則の一部であるカスタムの代わりに適切な単語があります)。事実、2つのレベルまで多くのカスタム属性があります。 –