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.
使用 jQuery,如果页面上的任何内容都有“错误”类,我将如何触发事件。我厌倦了使用 jQuery("*"),但是如何将它集成到 IF 语句中?
使用这个测试:
if ($('.error').length) {
这将检查页面上的任何内容是否具有类error。
error
$(function(){ if($('.error').length) { doSomething() } });