Java Applet之前的警报消息,导致浏览器无响应

时间:2015-04-29 11:19:48

标签: java javascript applet

我在发出警告消息“请接受JAVA小程序”时遇到问题。在页面加载java applet之前导致浏览器没有响应。 我暂停java applet加载并要求用户允许接受它。

<Html>
  <Head>
    <Title>Java Example</Title>
  </Head>
<script>
  alert("Please accept the JAVA applet.");
</script>
  <Body>
    This is my page<br>
    Below you see an applet<br>
    <br>
    <Applet Code="MyApplet.class" width=200 Height=100>
    </Applet>
  </Body>
</Html> 

1 个答案:

答案 0 :(得分:0)

请尝试这样的事情:

<html>
    <head>
        <title>Java Example</title>
    </head>
    <body>
         This is my page<br/>
         Below you see an applet<br/>
         <script>
              var result = confirm("Please accept the JAVA applet.");
              if(result == true) {
                   document.write("<applet code='MyApplet.class' style='width:200px;height:100px;'>
                   </applet>");
              }
         </script>
    </body>
</html>

请您按照标准编写HTML代码。

编辑: 那么,在这种情况下,请使用&#34; alert&#34;功能而不是&#34;确认&#34;。您的脚本应如下所示:

<script>
    alert("Please accept the JAVA applet.");
    document.write("<applet code='MyApplet.class' style='width:200px;height:100px;'>
               </applet>");          
</script>

如果我的答案符合您的要求,请标记。