JavaScript Tutorial/MS JScript/PowerPC — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:24, 26 мая 2010

@_PowerPC

The @_PowerPC variable determines if a Motorola PowerPC processor is being used. When the variable is not true, it is defined as NaN.



<html>
    <script language="JScript">
    <!--
    @if (@_PowerPC)
      alert("You are using a Motorola PowerPC processor.");
    @else
      alert("You are NOT using a Motorola PowerPC processor.");
    @end
    -->
    </script>
</html>