JavaScript Tutorial/MS JScript/jscript version — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
@_jscript_version
The @_jscript_version variable hold the JScript version number in major.minor format.
Before accessing the @_jscript_version variable, use the @cc_on statement to define the variable.
<html>
<script language="JScript">
<!--
//Set conditional compilation so @_jscript_version variable will be defined.
@cc_on
//Display the JScript verision number using the @_jscript_version variable
document.write("The JScript version is ",@_jscript_version);
-->
</script>
</html>