我使用 onload 属性触发我的 javascript ->window.onload = function(){ // start code }
<head>
最近我开始对设置我的 .js 文件的标签进行 .innerHTML 写入。
document.head.innerHTML = html_string
// where html_string contains the link to my .js file.
我遇到的问题是,现在永远不会调用 onload 函数,因此我的页面上没有 javascript。
有没有办法手动调用它或模拟它的行为?