我想在加载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?
}
由于