0

我已经从 Tomcat 6 Web 应用程序更改了嵌入在网页中的小程序,以便能够调用 Javascript 函数(导入 netscape.javascript.*;),现在突然在使用 IE9 文本访问网页时出现 404 错误:

未找到错误404。此服务器上没有上下文匹配或处理此请求。此服务器已知的上下文是:html_javascript(/html_javascript)

和 Chrome 一样。

我需要做一些额外的事情来完成这项工作吗?为什么这个错误?

4

1 回答 1

0

通过将 MAYSCRIPT 添加到 html 中的小程序标记中解决了该问题。

像这样:

<applet code="com.example.MyApplet.class" name="myapplet"  codebase="http://localhost:8080/example/classes" align="baseline"
 width="200" height="200" MAYSCRIPT>
<PARAM NAME="model" VALUE="models/HyaluronicAcid.xyz">
alt="Your browser understands the &lt;APPLET&gt; tag but isn't running the applet, for some reason."
Your browser is completely ignoring the &lt;APPLET&gt; tag!
</applet>
于 2012-11-11T22:24:09.580 回答