JavaScript Tutorial/MS JScript/mac — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:24, 26 мая 2010
@_mac
The @_mac variable determines if an Apple Macintosh system is being used. When the variable is not true, it is defined as NaN.
<html>
<script language="JScript">
<!--
@if (@_mac)
alert("You are using an Apple Macintosh system.");
@else
alert("You are NOT using an Apple Macintosh system.");
@end
-->
</script>
</html>