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.
このようにボタンクリックでクラスを追加しています
$('#someid').addclass("active11");
その時点でブラウザで表示すると、このクラスは正常に追加されましたが、その時点で復元ボタン(モバイルビューを意味します)で表示すると、追加されたクラスは表示されません。
どうすればこれを達成できますか? 助けてください
大文字の C の addClass である必要があります。
これは正しい構文です。
$( "element" ).addClass( "myClass" );