4 Möglichkeiten zum asynchronen Laden von js, die Überprüfung beginnt.
Option 1: $(document).ready
<!DOCTYPE html> <html> <head> <script src="http://common.cnblogs.com/script/jquery.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { alert("加载完成!"); }); </script> </head> <body> <img src="http://images.cnitblog.com/i/121863/201405/222202573569862.jpg" /> </body> </html>
Kommentare:
1. Jquery muss zitiert werden
2. Kompatibel mit allen Browsern.
Option 2: