java applet 可以操作包含它的 HTML 页面吗?

发布于 2024-07-28 23:23:23 字数 91 浏览 3 评论 0原文

我想知道是否可以在包含 Java 小程序的 HTML 页面上编写一些内容。

更一般地说,这两者之间可能存在哪些相互作用?

谢谢。

I wanted to know if I can write something on the HTML page containing my Java applet from within the applet.

More generally, what interactions are possible between these two?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

z祗昰~ 2024-08-04 23:23:23

然后,您可以在 Java 小程序中

 // object to allow applet to invoke Javascript methods
protected static JSObject appletWindowJSObject = null;

appletWindowJSObject = JSObject.getWindow(this);

 //Call your javascript method on the page and pass it something
 appletWindowJSObject.call("myJavascriptMethod", "This is what I am passing");

使用 javascript 照常操作 html 页面。

声明小程序时可能还需要包含 mayscript 参数,不确定是否不再需要。

From within your java applet

 // object to allow applet to invoke Javascript methods
protected static JSObject appletWindowJSObject = null;

appletWindowJSObject = JSObject.getWindow(this);

 //Call your javascript method on the page and pass it something
 appletWindowJSObject.call("myJavascriptMethod", "This is what I am passing");

You can then use javascript to manipulate the html page as usual.

May also need to include the mayscript parameter when declaring the applet, not sure if this is needed anymore or not.

や莫失莫忘 2024-08-04 23:23:23

您可以使用 JSObject。

Sun:java 到 javascript 通信

You could use the JSObject.

Sun: java to javascript communication

梦明 2024-08-04 23:23:23

java applet 可以调用 javascript 函数。

A java applet can call javascript functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文