java applet 可以操作包含它的 HTML 页面吗?
我想知道是否可以在包含 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
然后,您可以在 Java 小程序中
使用 javascript 照常操作 html 页面。
声明小程序时可能还需要包含 mayscript 参数,不确定是否不再需要。
From within your java applet
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.
您可以使用 JSObject。
Sun:java 到 javascript 通信
You could use the JSObject.
Sun: java to javascript communication
java applet 可以调用 javascript 函数。
A java applet can call javascript functions.