http://www.frostjedi.com/terra/scripts/demo/this.html
'this' is defined, as I understand it, for event handlers, but why is
it defined, here?
Here's the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>this</title>
</head>
<body>
<script type="text/javascript">
(function() {
if (this) {
alert("test exists");
} else {
alert("test doesn't exist");
}
})();
</script>
</body>
</html> 13 1099
yawnmoth <te*******@yahoo.comwrites: http://www.frostjedi.com/terra/scripts/demo/this.html
'this' is defined, as I understand it, for event handlers, but why is
it defined, here?
Here's the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>this</title>
</head>
<body>
<script type="text/javascript">
(function() {
if (this) {
alert("test exists");
} else {
alert("test doesn't exist");
}
})();
</script>
</body>
</html>
"this" means the object of a method call. in short, whenever it
doens't refer to anything more specific, it refers to the global
object (the "window" object, ignoring some details).
In method calls on a specific object, "this" refers to the object of
the call (and DOM events act like method calls in that respect).
function bla() {
// do something with "this"
}
bla() // act on the global object
var foo = { bar: bla }
foo.bla() // act on the foo object
var zee = {};
foo.bla.call(z) // act on the zee object
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
Joost Diepenmaat <jo***@zeekat.nlwrites:
var zee = {};
foo.bla.call(z) // act on the zee object
that should have been
foo.bla.call(zee) // act on the zee object
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
On Aug 26, 4:20*pm, Joost Diepenmaat <jo...@zeekat.nlwrote:
Joost Diepenmaat <jo...@zeekat.nlwrites:
var zee = {};
foo.bla.call(z) // act on the zee object
that should have been
foo.bla.call(zee) // act on the zee object
Thanks - I appreciate it!
Joost Diepenmaat wrote:
"this" means the object of a method call. in short, whenever it
doens't refer to anything more specific, it refers to the global
object [...]
Period. The rest of that paragraph is unnecessary to mention here and
ultimately misleading.
PointedEars
--
var bugRiddenCrashPronePieceOfJunk = (
navigator.userAgent.indexOf('MSIE 5') != -1
&& navigator.userAgent.indexOf('Mac') != -1
) // Plone, register_function.js:16
Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
Joost Diepenmaat wrote:
>"this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...]
Period. The rest of that paragraph is unnecessary to mention here and
ultimately misleading.
You know, it would have been more informative for anyone following
this thread if you'd quoted the part you objected to, and refered to
the current thread where you're discussing that subject. This kind of
reply is not helping anyone.
Thomas, I respect your knowledge and insight, but I really do not like
your posting style.
For future readers: the window/global object thread starts at
Message-ID: <EK****************@flpi143.ffdc.sbc.com>
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
Joost Diepenmaat wrote:
Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
>Joost Diepenmaat wrote:
>>"this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...]
Period. The rest of that paragraph is unnecessary to mention here and ultimately misleading.
You know, it would have been more informative for anyone following
this thread if you'd quoted the part you objected to, and refered to
the current thread where you're discussing that subject. This kind of
reply is not helping anyone.
It would have helped you, would you not have fallen victim to your
self-delusions.
Thomas, I respect your knowledge and insight, but I really do not like
your posting style.
Go on crying. I am not going to repeat myself just to pamper those who
cannot seem to follow this simple rule of Usenet: read before you post.
Score adjusted
PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm>
Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
Joost Diepenmaat wrote:
>Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
>>Joost Diepenmaat wrote: "this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...] Period. The rest of that paragraph is unnecessary to mention here and ultimately misleading.
You know, it would have been more informative for anyone following this thread if you'd quoted the part you objected to, and refered to the current thread where you're discussing that subject. This kind of reply is not helping anyone.
It would have helped you, would you not have fallen victim to your
self-delusions.
>Thomas, I respect your knowledge and insight, but I really do not like your posting style.
Go on crying. I am not going to repeat myself just to pamper those who
cannot seem to follow this simple rule of Usenet: read before you post.
Score adjusted
Please adjust it a lot lower, and don't bother replying to me.
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
Joost Diepenmaat wrote:
Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
>Joost Diepenmaat wrote:
>>Thomas 'PointedEars' Lahn <Po*********@web.dewrites: Joost Diepenmaat wrote: "this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...] Period. The rest of that paragraph is unnecessary to mention here and ultimately misleading. You know, it would have been more informative for anyone following this thread if you'd quoted the part you objected to, and refered to the current thread where you're discussing that subject. This kind of reply is not helping anyone.
It would have helped you, would you not have fallen victim to your self-delusions. [...] Score adjusted
Please adjust it a lot lower, and don't bother replying to me.
My apologies, this was uncalled for. While I do not think the thread
reference was necessary (we discussed that only hours ago), my quoting
was certainly suboptimal as was my second followup here.
PointedEars
--
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
On Aug 26, 6:19*pm, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
Joost Diepenmaat wrote:
"this" means the object of a method call. in short, whenever it
doens't refer to anything more specific, it refers to the global
object [...]
Period. *The rest of that paragraph is unnecessary to mention here and
ultimately misleading.
Do they constitute poor coding practices, or something? I actually
thought it was useful (didn't know about call(), for instance),
although if I should be doing something differently, I'd like to
know...
Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
Joost Diepenmaat wrote:
>Thomas 'PointedEars' Lahn <Po*********@web.dewrites:
>>Joost Diepenmaat wrote: Thomas 'PointedEars' Lahn <Po*********@web.dewrites: Joost Diepenmaat wrote: You know, it would have been more informative for anyone following this thread if you'd quoted the part you objected to, and refered to the current thread where you're discussing that subject. This kind of reply is not helping anyone. It would have helped you, would you not have fallen victim to your self-delusions. [...] Score adjusted
Please adjust it a lot lower, and don't bother replying to me.
My apologies, this was uncalled for. While I do not think the thread
reference was necessary (we discussed that only hours ago), my quoting
was certainly suboptimal as was my second followup here.
Apologies accepted.
I'm looking forward to more constructive (if occasionally heated)
discussions in the future.
Joost.
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
yawnmoth wrote:
On Aug 26, 6:19 pm, Thomas 'PointedEars' Lahn <PointedE...@web.dewrote:
>Joost Diepenmaat wrote:
>>"this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...]
Period. The rest of that paragraph is unnecessary to mention here and ultimately misleading.
Do they constitute poor coding practices, or something?
Not Joosts examples, they are OK (but see below). (It would turn out my
suboptimal quoting was even more misleading than what I was actually
referring to. Sigh. [psf 10.1])
I actually thought it was useful (didn't know about call(), for
instance), although if I should be doing something differently, I'd like
to know...
Function.prototype.call() should be feature-tested before called because it
is not universally supported:
<http://PointedEars.de/es-matrix/#f>
HTH
PointedEars
--
Anyone who slaps a 'this page is best viewed with Browser X' label on
a Web page appears to be yearning for the bad old days, before the Web,
when you had very little chance of reading a document written on another
computer, another word processor, or another network. -- Tim Berners-Lee
yawnmoth <te*******@yahoo.comwrites:
On Aug 26, 6:19Â*pm, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
>Joost Diepenmaat wrote:
"this" means the object of a method call. in short, whenever it
doens't refer to anything more specific, it refers to the global
object [...]
Period. Â*The rest of that paragraph is unnecessary to mention here and ultimately misleading.
Do they constitute poor coding practices, or something? I actually
thought it was useful (didn't know about call(), for instance),
although if I should be doing something differently, I'd like to
know...
Thomas has (reasonably justifiable) objections to calling the "window"
object the global object. See the 'Why "window.alert()" over
"alert()"?' thread (I linked to it in this one).
--
Joost Diepenmaat | blog: http://joost.zeekat.nl/ | work: http://zeekat.nl/
On Aug 26, 7:46*pm, Thomas 'PointedEars' Lahn <PointedE...@web.de>
wrote:
yawnmoth wrote:
On Aug 26, 6:19 pm, Thomas 'PointedEars' Lahn <PointedE...@web.dewrote:
Joost Diepenmaat wrote: "this" means the object of a method call. in short, whenever it doens't refer to anything more specific, it refers to the global object [...]
Period. *The rest of that paragraph is unnecessary to mention here and
ultimately misleading.
Do they constitute poor coding practices, or something?
Not Joosts examples, they are OK (but see below). *(It would turn out my
suboptimal quoting was even more misleading than what I was actually
referring to. *Sigh. [psf 10.1])
I actually thought it was useful (didn't know about call(), for
instance), although if I should be doing something differently, I'd like
to know...
Function.prototype.call() should be feature-tested before called because it
is not universally supported:
<http://PointedEars.de/es-matrix/#f>
Thanks! I'll need to read that "Why "window.alert()" over
"alert()"?" thread Joost mentioned :) This discussion thread is closed Replies have been disabled for this discussion. Similar topics
7 posts
views
Thread by Jonathan Fine |
last post: by
|
17 posts
views
Thread by lawrence |
last post: by
|
5 posts
views
Thread by Ed Havelaar |
last post: by
|
7 posts
views
Thread by jammie_linux |
last post: by
|
18 posts
views
Thread by anand |
last post: by
|
4 posts
views
Thread by sudhir |
last post: by
|
6 posts
views
Thread by scottyman |
last post: by
|
14 posts
views
Thread by ThazKool |
last post: by
|
7 posts
views
Thread by markscottwright |
last post: by
|
14 posts
views
Thread by jl_post |
last post: by
| | | | | | | | | | |