我想在我用 GWT 编写的应用程序中执行 JavaScript。这是在常规 HTML 中工作的代码:
<html>
<head>
</head>
<body>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<script src="jquery.js"></script>
<script src="jquery.roundabout.js"></script>
<script>
$(document).ready(function() {
$('ul').roundabout();
});
</script>
</body>
</html>
(假设jquery.js
和jquery.roundabout.js
在同一个文件夹中。)
我有一个somePresenter
(with someView.java
and someView.ui.xml
),我希望上面的代码在someView.ui.xml
.
我将上面的代码复制粘贴到 XML(除了<html>
我有<g:HTMLPanel>
标签的标签),但 JavaScript 似乎没有被执行(我看到的只是列表,因为它应该在脚本之前)。
我怎样才能让它工作?
相关问题:我可以如何使用 GQuery 吗(例如:GQuery.$().getScript(jquery.roundabout.js) 加载外部 js 脚本)?
提前致谢