Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iliakan committed Jul 13, 2015
2 parents c131e5a + 2f08757 commit 6160d38
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion 1-js/2-first-steps/21-javascript-specials/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ alert( sum(1, 2) ); // 3

## Named Function Expression

Если объявление функции является частью какого-либо выражения, например `var = function...` или любого другого, то это Function Expression.
Если объявление функции является частью какого-либо выражения, например `var f = function...` или любого другого, то это Function Expression.

В этом случае функции можно присвоить "внутреннее" имя, указав его после `function`. Оно будет видно только внутри этой функции и позволяет обратиться к функции изнутри себя. Обычно это используется для рекурсивных вызовов.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
</textarea>

<script>
area.onmousedown = function(e) { this.value += "mousedown\n"; this.scrollTop = 1e9; };
area.onmouseup = function(e) { this.value += "mouseup\n"; this.scrollTop = 1e9; };
area.onclick = function(e) { this.value += "click\n"; this.scrollTop = 1e9; };
area.onmousedown = function(e) { this.value += "mousedown\n"; this.scrollTop = this.scrollHeight; };
area.onmouseup = function(e) { this.value += "mouseup\n"; this.scrollTop = this.scrollHeight; };
area.onclick = function(e) { this.value += "click\n"; this.scrollTop = this.scrollHeight; };
</script>
```
[/online]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ table.onmouseover = function(event) {
var target = event.target;
target.style.background = 'pink';
text.value += "mouseover " + target.tagName + "\n";
text.scrollTop = text.scrollHeight;
};

table.onmouseout = function(event) {
var target = event.target;
target.style.background = '';
text.value += "mouseout " + target.tagName + "\n";
text.scrollTop = text.scrollHeight;
};
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function handler(event) {
log.value += event.type + ': ' +
'target=' + str(event.target) +
', relatedTarget=' + str(event.relatedTarget) + "\n";
log.scrollTop = 1e9;
log.scrollTop = log.scrollHeight;

if (event.type == 'mouseover') {
event.target.style.background = 'pink'
Expand Down

0 comments on commit 6160d38

Please sign in to comment.