我有带有脚本文件 custom.js 的 html 页面,它是 GWT 的引导程序
<!DOCTYPE html>
<html>
<head>
<!-- -->
<script type="text/javascript" src="login/login.nocache.js"></script>
<script type="text/javascript" src="common/js/custom.js"></script>
</head>
<div id="gwt-inject-place"/>
</html>
没关系,一切正常。但是在 custom.js 中,我需要在 login/login.nocache.js 在<div id="gwt-inject-place"/>
. 通常 custom.js 在注入发生之前以某种方式运行。
那么我应该怎么做才能注入 JavaScript jquery 文件呢?
alert('global');
jQuery(document).ready(function ()
{
alert('inner');
}
这注入 custom.js 但只global alert
显示。
public void onModuleLoad(){
RootPanel.get("gwt-inject-place").add(view);
ScriptInjector.fromUrl("../common/js/custom.js").inject();
}