HBCMS更多的中文手册参考:

compareVersions Method

DHTML文档教程

Compares two version numbers.

dhtml语法

iResult = clientCaps.compareVersions(sVersionNumber1, sVersionNumber2)

Parameters

sVersionNumber1 Required. Stringthat specifies the first of two version numbers to compare.
sVersionNumber2 Required. Stringthat specifies the second of two version numbers to compare.

Return Value

Returns one of the following values:

-1sVersionNumber1 is less than sVersionNumber2
0sVersionNumber1 is equal to sVersionNumber2
1sVersionNumber1 is greater than sVersionNumber2

DHTML代码范例

This example uses the compareVersions method to compare the version of the installed Microsoft virtual machine component with a specified version.

<HTML xmlns:IE >
<HEAD>
<STYLE>
@media all {
IE\:clientCaps {behavior:url(#default#clientcaps)}
}
</STYLE>
</HEAD>
<BODY >
<IE:clientCaps ID="oClientCaps" />
:
<SCRIPT>
sMSvmVersion = oClientCaps.getComponentVersion
("{08B0E5C0-4FCB-11CF-AAA5-00401C608500}","ComponentID");
if (0 == oClientCaps.compareVersions(sMSvmVersion, "5,0,18,1024"))
window.alert ("Versions matched!");
</SCRIPT>
:
</BODY>

是否符合公共标准

There is no public standard that applies to this method.

Applies To

clientCaps

更多语法参考

clientcaps, using dhtml behaviors, getcomponentversion, isComponentInstalled