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.
次のように、html から div にデータをロードしています。
$('#result').load('ajax/test.html');
内部test.htmlにはalertme機能があります。 HTML が現在のドキュメントに読み込まれた後にこのメソッドを呼び出す方法はありますか?
test.html
alertme
$('#result').load('ajax/test.html', function(){ alertme(); });