<a onclick="javascript:func(this)" >here</a>
what does this mean in the script?
|
|
In the case you are asking about, So it would be the |
|||
|
|
|
It refers to the element in the DOM to which the
(This example uses jQuery.) |
||||
|
|
|
|
|||
|
|
|
When calling a function, the word "this" is a reference to the object that called the function. In your example, it is a reference to the anchor element. At the other end, the function call then access member variables of the element through the parameter that was passed. |
|||
|
|
|
The value of event handler attributes such as onclick should just be JavaScript, without any "javascript:" prefix. The javascript: pseudo-protocol is used in a URL, for example:
You should use the |
|||||||
|