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.
javascript怎么可能?我找不到像这样的事件:
$(.check-icon).on('loaded', function(){...});
$(document).ready(function(){ $(.check-icon).on('load', function(){...}); });
你的意思是在DOM你准备好之后document
DOM
document
你可以用这个。在这里检查
$(document).ready(function(){ ---code here });