在java中调用js

时间:2014-07-18 13:37:54

标签: java javascript gwt

如何在gwt java客户端中调用此库jsTimezoneDetect https://bitbucket.org/pellepim/jstimezonedetect函数。我把它包含在html脚本中,现在必须调用它

 var tz = jstz.determine();
tz.name(); 

我的问题是,如何在客户端gwt中调用它并发送给客户端?创建一个调用它的函数,如?:

static native void getTimeZone() /*-{
    var tz = jstz.determine(); 
        tz.name(); 
}-*/

1 个答案:

答案 0 :(得分:1)

您必须使用分号关闭本机方法:

native String method()/*-{
  // js code
  return tz.name();
}-*/;