下载让FireFox支持OCX插件的安装包!安装方式下载时有说明
页面的编辑方式如下:
FF invokes plugins for rendering content by matching the MIME type of that content as specified in the <object> tag. Here's an example:
<object id="Control" TYPE="application/x-itst-activex" WIDTH="300" HEIGHT="300" clsid="{D27CDB6E-AE6D-11cf-96B8-444553540000}" progid="ShockwaveFlash.ShockwaveFlash" event_OnReadyStateChange="OnReady" param_src="http://www.youtube.com/v/53RdNYwImYc"> </object>
- type: the MIME Type the plugin is associated with.
- clsid: is the CLSID of the control you wish the plugin to load.
- progid: is the PROGID of the control you with the plugin to load.
- event_XXX: tells the plugin to bind the event XXX to the Javascript function given as value.
- param_XXX: requests that the plugin will invoke the requested ActiveX control with the parameter named XXX and set its value accordingly.
- codeBaseURL: may be used to provide a location from which the plugin will download and install a CAB containing the needed ActiveX control.
There is no need to provide both a clsid and a progid, the above is done only for the purpose of demonstration.
本文介绍如何在Firefox中配置并使用OCX插件。通过指定MIME类型、CLSID和PROGID等属性,可以实现在网页中加载特定的ActiveX控件。此外,还提供了具体的HTML代码示例。

4435

被折叠的 条评论
为什么被折叠?



