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 });