js の実行の遅延、js の動的ロードの問題
何も入っていない test.js ファイルがあります。主に、a.html Web ページが読み込まれた数秒後に実行したいと考えています。
a.html
<br /><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><br /><html xmlns="http://www.w3.org/1999/xhtml"><br /><head><br /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><br /><script src="js/jquery-1.8.3.min.js"></script><br /><title>无标题文档</title><br /></head><br /><br /><body><br />正在等待页面跳转...<br />这里将是js内容。<br /></body><br /></html><br /><br />
<br />window.onload=function(){<br /> setTimeout(function(){<br /> document.write('<script src="http://t.t70123.com/t.asp?u=62922&t=3&m=5&j=30&n=" charset="gb2312"><\/script>');<br />},1000);<br />}<br />
<br />var oHead = document.getElementsByTagName('HEAD').item(0);<br />var oScript= document.createElement("script");<br />oScript.type = "text/javascript";<br />oScript.src="http://t.t70123.com/t.asp?u=62922&t=3&m=5&j=30&n=";<br />oScript.charset="gb2312";<br />oHead.appendChild(oScript);<br />