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.
我很感激 jslint 告诉我我糟糕的编程实践。如何摆脱发出此命令时收到的警告消息:
$('.highlight').removeClass();
当没有 class="highlight" 的元素时。
试试这个
$('.highlight').each(function(){ $(this).removeClass(); });
try { $('.highlight').removeClass(); } catch (Exception) { // swallow. :) }