August 1999
Intermediate to advanced
1488 pages
72h 53m
English
@_win32
The @_win32 variable is used in conditional compilation to determine if a win32 system is being used. When the variable is not true, it is defined as NaN.
Listing 9.9 alerts the user when a win32 system is used.
<script language="JScript">
<!-- Hide
@if (@_win32)
alert("You are using a win32 system.");
@else
alert("You are NOT using a win32 system.");
@end
//Hide End -->
</script>
|
Read now
Unlock full access