使用 GWT Java 中的 javascript 变量
我在 html 文件的 head 部分定义了一个 javascript 变量。例如 var yourName = "Nadeem";现在我想在我的 gwt java 文件/类/方法中使用这个变量。但它显示一个错误:未定义。请提出一些提示。最好的祝愿。
I have defined a javascript variable in head section of html file. E.g var yourName = "Nadeem"; Now I want to utilize this variable in my gwt java file/class/method. But it shows an error: Undefined. Please suggest some hints. Best Wishes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
诀窍是使用定义变量的正确“上下文”,即
$wnd
:请参阅 http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html#writing
The trick is to use the right "context" where the variable is defined, i.e.
$wnd
:See http://code.google.com/webtoolkit/doc/latest/DevGuideCodingBasicsJSNI.html#writing