可以在你得applet里再做一个弹出窗口,不知道这能否满足你的需求。

解决方案 »

  1.   

    我不知道是不是我说的不清楚,我是说,我如何能够在html文档中通过编写html来在一个html中载入两个applet,例如:
    <applet code = myapplet.class width = .... height = ...></applet>
    是表示加载名为myapplet这个applet,那么,如果我在这个html中要有两个或以上的applet,如何编写html,至少这样是不行的吧:
    <applet code = myapplet1.class width = .... height = ...></applet>
    <applet code = myapplet2.class width = .... height = ...></applet>
    如何做阿,帮帮忙阿
      

  2.   

    <applet code = myapplet1.class width = .... height = ...></applet>
    <applet code = myapplet2.class width = .... height = ...></applet>
    为什么不可以?
    你试过了?applet 和图片、flash之类的东西对浏览器来说是一样的,想要加载多少就是多少(当然有一定的性能极限)。原来,我在做调试的时候,就是一个页面同时显示两三个applet 的。
    只是,排版有点乱。
      

  3.   

    <applet code="1.class" codebase = "applet" width="700" height="700">
      </applet> 
    <applet code="2.class" codebase = "applet" width="400" height="300">
      </applet>是可以的
    只是需要在排版上注意一点。不然会很乱