How to deploy a java applet for today's browsers (applet, embed, object)?

前端 未结 7 1693
南方客
南方客 2020-12-02 14:50

How do i deploy a java applet for modern browsers? I know there are somehow 3 possibilities but nobody tells me which one to prefer and how to use them.

Does somebod

相关标签:
7条回答
  • 2020-12-02 15:19

    Well, be aware that deployJava.js is designed to be called at document load time. So if you insert applet dynamically, upon an event, after DOM has been constructed, you're kinda out of luck with this new standard approach. We had to use the object/embed/noembed construct.

    Edit: Oh, someone found a better way for this, but this required manual altering of SUN's original deployJava.js, please see the link below: Java Plug-In - Important addition to deployJava.js

    0 讨论(0)
提交回复
热议问题