将类添加到 Param 标签 - JavaApplet

发布于 2024-10-26 15:41:08 字数 664 浏览 0 评论 0原文

我有一个像这样的小程序代码:

<applet type="applet" codebase="." code="ViewerApplet.class" align="center" width="100%" height="600" archive="icepdf-core.jar, icepdf-viewer.jar, icepdf-applet.jar">
<param name="image" value="my_logo.gif" type="image/gif">
<param  name="java_arguments" value="-Xmx128m" />
<param name="classloader_cache" value="true" />
<param name="url" value="<%=test%>" />
</applet>

我想向这一行添加样式。

这意味着,在加载 pdf 之前,我已经用我的徽标替换了 java 徽标。 徽标应与某种样式居中对齐。是否可以添加样式 位于 param 标签上方。

谢谢 - 哈恩

I have an applet code like this:

<applet type="applet" codebase="." code="ViewerApplet.class" align="center" width="100%" height="600" archive="icepdf-core.jar, icepdf-viewer.jar, icepdf-applet.jar">
<param name="image" value="my_logo.gif" type="image/gif">
<param  name="java_arguments" value="-Xmx128m" />
<param name="classloader_cache" value="true" />
<param name="url" value="<%=test%>" />
</applet>

I want to add style to this line. <param name="image" value="my_logo.gif" type="image/gif">

It means, before loading the pdf i have replaced the java logo with my logo.
The logo should be aligned at center with some style. Is it possible to add style to the
above param tag.

Thanks -
Haan

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

耳根太软 2024-11-02 15:41:08

不,param 标签仅用于向小程序发送参数。 w3c 上的定义:

“param”标签用于定义对象或小程序元素的参数或变量。

想象一下 param 标签与将字符串发送到函数相同,您不能通过以不同的方式发送字符串来格式化字符串。

No, the param tags are only for sending parameters to the applet. Definition on w3c:

The 'param' tag is used to define parameters or variables for an object or applet element.

Imagine that the param tag is the same as sending a string to a function, you can't format the string by sending it in a different way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文