<script type="text/javascript"> $(window).load(function(){ $.ajax({ type: "GET", url: "/jquery-ui.min.js", cache: false, dataType: "script" }); }); </script>
<script type="text/javascript"> $(window).load(function(){ Link=[]; Link[0]='test1.js'; Link[1]='test2.js'; Link[2]='test3.js'; for(var i=0; i<Link.lehgth; i++) { var js = document.createElement('script'); js.setAttribute('src',Link[i]); alert(js.getAttribute('src')) document.body.appendChild(js) } }); </script>
<script type="text/javascript"> document.body.onload = function(){ Link=[]; Link[0]='test1.js'; Link[1]='test2.js'; Link[2]='test3.js'; for(var i=0; i<Link.lehgth; i++) { var js = document.createElement('script'); js.setAttribute('src',Link[i]); //alert(js.getAttribute('src')) document.body.appendChild(js) }} </script>