Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试从 GWT 访问 Flexpaper,但无法识别以下代码。
$Flexpaper("documentViewer").getMarkList();
它会抛出诸如 $Flexpaper 未定义之类的错误。我已将 js、jquery 导入也添加到 index.html。
有人可以帮助我吗?我只想知道如何让 GWT 识别 "$Flexpaper" 。如果不是为了这个,有人可以告诉我如何访问任何“$”元素。
GWT JSNI 代码在嵌套框架中运行。例如,要从 JSNI 访问浏览器的窗口对象,您必须使用特殊$wnd引用。尝试将$脚本中的所有内容替换为$wnd.$:
$wnd
$
$wnd.$
$wnd.$Flexpaper("documentViewer").getMarkList();