我可以在 GWT 应用程序中正常从 JavaScript 运行 Java,但是当我在 iframe 中运行它时它不起作用。
HTML
<input type="button" onclick="doIT()" value="Do"
class="fbbotton" style="margin-left: 20px" />
爪哇
$wnd.doIT = @com.application.client.application::saad();
static void saad()
{
GWT.log("saad");
}
可能是什么问题呢?