使Firefox浏览器支持ocx类型的插件

下载让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.


猜你喜欢

转载自blog.csdn.net/fqlove/article/details/19613011