August 1999
Intermediate to advanced
1488 pages
72h 53m
English
@_jscript_build
The @_jscript_build variable is used in conditional compilation to hold the build number of the JScript scripting engine.
Warning
Before accessing the @_jscript_build variable, use the @cc_on statement to define the variable.
Listing 9.3 uses the @_jscript_build variable to display the build number of the JScript engine that is being used.
<script language="JScript">
<!-- Hide
//Set conditional compilation so @_jscript_build variable will be defined.
@cc_on
//Display the JScript build number using the @_jscript_build variable
document.write("The JScript engine build number is ",@_jscript_build);
//Hide End -->
</script>
|
Read now
Unlock full access