GWT。如何获取html标签列表

时间:2012-01-05 11:19:39

标签: html json gwt jsni

在Javascript中,我可以写:

var circles = document.all.tags("circle");

并在圈子变量中我将有一个圆圈标签列表。

我怎样才能在GWT中这样做? 我写道:

public final native void getPoints() /*-{
    this.points = $doc.all.tags("circle");
}-*/;

public final native String toJSON() /*-{
    return $wnd.JSON.stringify(this);
}-*/;

但是当我调用toJSON方法时,我有异常。

1 个答案:

答案 0 :(得分:1)