从 JavaScript 调用 applet 函数
这可能是非常基本和简单的,但我的 Gogle-foo 让我失望了。
我通过对象标记在页面上嵌入了一个小程序。
它有方法 public void foo(String bar)
现在我想用 baz
调用 foo
,
所以我这样做了,
getElemntById('myApplet').foo('baz')
这不起作用,并且我无法从 Google-foo 获取有关如何做到这一点的信息。
This is probably really basic and Simple but my Gogle-foo is failing me.
I have an applet embedded on the page via an Object tag.
It has method public void foo(String bar)
Now I want to call foo
with baz
,
So I do
getElemntById('myApplet').foo('baz')
Which doesn't work, and I cant get info from Google-foo on what is the way to do it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该是 getElementById (缺少 e)
getElementById 应该可以工作,所以问题可能在任何地方。您可以在
http:// download.oracle.com/javase/1.5.0/docs/guide/plugin/developer_guide/using_tags.html
最好知道详细的问题(例如Javascript错误,反射异常)
It should be getElementById (there's a missing e)
getElementById should work, so the problem could anywhere. You've got a guide in
http://download.oracle.com/javase/1.5.0/docs/guide/plugin/developer_guide/using_tags.html
It would be good to know the detailed problem (e.g. Javascript error, reflection exception)