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.
我正在使用 phone-gap(1.3) 进行 android 应用程序开发。如何在 javascript 中添加/删除 android OS 中的类。我试过这个:
document.getElementById('delete_a').classList.add('whiteButton'); document.getElementById('delete_a').classList.remove('redButton');
但它不起作用。任何帮助表示赞赏。谢谢。
你试过这个吗:
document.getElementById('delete_a').className = "whiteButton";
参考这里