1.セレクターで始まるjQuery属性
jQuery では、「Attribute Starts With Selector」は、指定された文字列で始まる値を持つ指定された属性を持つ要素を選択します。
jQuery('[attribute^="value"]')
「id」が「ABC_」で始まる div を削除する場合、コードは次のようになります。
$('div[id^="ABC_"]').remove();
ドキュメントはこちら
http://api.jquery.com/attribute-starts-with-selector/
2.セレクターで終わるjQuery属性
同様に、" Attribute Ends With Selector " は、特定の文字列で終わる値を持つ指定された属性を持つ要素を選択します。
jQuery('[attribute$="value"]')
「id」が「_ABC」で終わる div を削除する場合、コードは次のようになります。
$('div[id$="_ABC"]').remove();
ドキュメントはこちら
http://api.jquery.com/attribute-ends-with-selector/
3. jQuery 属性にセレクターが含まれている
最後に、" Attribute Contains Selector " は、指定された部分文字列を含む値を持つ指定された属性を持つ要素を選択します。
jQuery('[attribute*="value"]')
「id」に「ABC」が含まれる div を削除する場合、コードは次のようになります。
$('div[id*="ABC"]').remove();
ドキュメントはこちら
http://api.jquery.com/attribute-contains-selector/