次のコードを使用して、IDに文字列を含むdivを正常に非表示にできます。
ボタン:
<input type="button" id="mytest" value="filter"></input>
jsコード:
//hides divs with class=screen3 and with 99 in its id
$('#myteste').click (function () {
$('div.screen3[id*="99"]').hide();
});
IDに文字列を含まないdivを非表示にするために、反対のことを行う必要がありますが、方法がわかりません。