我想在加载 DOM 后加载并运行一个外部 js 文件,外部 js 文件如下:
<script type="text/javascript" src="http://example.com/example.js"></script>
下面是 onLoad 钩子:
@Override
protected void onLoad()
{
super.onLoad();
//how to load and run the whole js file?
}
谢谢