����� 3
�� 6: ����� ������ ��� �� ������.
��� ������� ���� ���, setTimeout ��� ��� ����� ��� ����� ����� ����� JavaScript ���� �����. �� ��� ������ ���� �- setTimeout ��� ���� ���:
the_timeout = setTimeout("alert('Hello!');", 60000);
var the_string = "hello";
the_timeout = setTimeout("alert(the_string);", 60000);
��� �� ���� � - JavaScript ����� ��� ��� ��� ����� ���� ����� ��� ����� ����� ����� ����� �"� the_string. ��� ���� ���, JavaScript ����� ����� ��� ���� the_string ������ �- ()alert �� ������ ���. �����? ���� ��� ���, ����� the_string ���� ����� ���� ���� ����� � � "hello!" �����, �� ��� �� �� ��� ������ �� JavaScript ����� ���� �������, �- setTimeout ������ ��� ���� �� �����. ������, �� ����� �� ������� ��� ��:
function alertInAMinute()
{
var the_string = "hello";
the_timeout = setTimeout("alert(the_string);", 60000);
}
��� ���� ���� �������� ����� ����� ���:
<a href="#" onClick="alertInAMinute(); return false;">blah!</a>
�� ��� ������ ����� ������, ���� ������ ����� ����� the_string ���� ��������, �"� ����� �-var. ����: �� ��� ����� �-var ���� �������, ��� �JavaScript �����, �� ���� �� ���� ���� �������. ������� �� ����� ����� ����� the_string, ������ �� �- setTimeout, ��� �����. ���� ������� �-var, ������ ����� the_string ���� ���� ������� �� JavaScript. ���, ���� JavaScript ����� �� the_string ������� ��� ��� ��� ��, ��� ����� �� ����, ����� ����� �����.
���� �� ��� ���� ���� ����� ����� �- setTimeout. ��� �� ����� ��� ������ �� �� ���� �� ������ ����� �� ������ ����. �� ���� ����� ���:
function alertInAMinute()
{
var the_string = "hello";
the_timeout = setTimeout("alert(" + the_string + ");",60000);
}
��� �� ���� �� ������ the_string ����� ���� �������� �� setTimeout. ����� ������� ���� ���� �������, JavaScript ��� �� ���� �� ������.
��� ������ ���� ���� ��� ���� �� ����� ��������. ����, ��� ���� ����� �� ��� ������ �����. ���� ���� �� ����� ���� �� ����, ������ ���� ���� �� ���� ����.
���, ����� �� ����� ���. ��� ������ ���� ���, ������� ������ ��� ��� ���� �-HTML ������, �� ����� ����� ����. ���� ������ ������ �� ���� ���� ����, ������ ���� ������, ���� ����� ���� ��� ����� ������ ���� ����� ����.
��� �� ���� ���� ���� ����� ����������, �� ��� ����� �� �� �� ������ ���� ������� �������� ��� ���� ������ ����� HTML ������, ���� ���� ����� ����� ������� ������� ������� ���� ���, �������.
���� ������ ���
��� ��� «--
|