0

我在 vbscrpt 中有一堆代码。我需要在 IE 和 Chrome 中工作。我怎样才能使这个功能在 Chrome 和 IE 中工作

 <msxsl:script language="VBScript" implements- 
   prefix="mydetails">
 Function Getdetails(Val1 , Val2)
  Dim blnGetdetails
    blnGetdetails = ((Val1 or Val2) = Val1)
   If blnGetdetails = true Then
    Getdetails= "True"
    Else
    Getdetails= "False"
   End If
    End Function
    </msxsl:script>
4

1 回答 1

-1

做为 JS

function Getdetails(Val1 , Val2) { If (Val2 == Val1){ return true; } else { return false; } }

于 2019-08-29T11:42:19.187 回答