0

当我在 Gxt 中集成设计师工作的 Html 代码时遇到一些问题,我决定运行非常简单的测试并从使用 Gwt HtmlPanel 开始,我无法解释为什么不呈现包含的 javascript。

public class TestHTML implements EntryPoint {

    public void onModuleLoad() {

        String contenu = "<html>"
         +"<head>"
        +" <script type='text/javascript'>"
        +"function functionOne() { alert('You clicked the top text'); }"
        +"function functionTwo() { alert('You clicked the bottom text'); }"
        +"</script>"
        +"</head>"
        +"<body>"
         +"<p><a href='#' onClick='functionOne();'>Top Text</a></p>"
         +"<p><a href='javascript:functionTwo();'>Bottom Text</a></p>"
         +"</body>"
        +"</html>";
          HTMLPanel htmlPanel = new HTMLPanel(contenu);
          ContentPanel content = new ContentPanel();
          content.add(htmlPanel);
          RootPanel.get().add(content);

    }
} 

我在浏览器中找不到 javascript 函数(我用萤火虫查看) 有人有答案或建议吗?问候

4

1 回答 1

2

您应该在 gwt 中使用 JSNI。

public void onModuleLoad() {
    registerJS();
    String contenu = "<html>"
            +"<body>"
             +"<p><a href='#' onClick='functionOne();'>Top Text</a></p>"
             +"<p><a href='javascript:functionTwo();'>Bottom Text</a></p>"
             +"</body>"
            +"</html>";
              HTMLPanel htmlPanel = new HTMLPanel(contenu);
              RootPanel.get().add(htmlPanel);
}

public native void registerJS()/*-{
    $wnd.functionOne = function(){
        alert('you clicked the top text');
    }

    $wnd.functionTwo = function(){
        alert('you clicked the bottom text');
    }
}-*/;
于 2012-11-09T15:33:17.017 回答