Recently, ESET add my domain name to the black-list of their database. You can’t open my site and been warned my site is not safe if your PC is running the ESS or EAV. Why Eset block my site?The answer is obvious. That is reason that you come here. I promise that my site is pure, no virus, no spyware, no Trojan, no pop ads. You can test my word through intalling Kaspersky or other Antivirus Software. If you want open my site and take latest escalation ID & Activation Code, close your ESET software(disable antivirus and antispyware protection function temporarily) or by proxy or virtual machinor. You can also feed the RSS source http://feed.loserblog.cn.
Recently, ESET add my domain name to the black-list of their database. You can’t open my site and been warned my site is not safe if your PC is running the ESS or EAV. Why Eset block my site?The answer is obvious. That is reason that you come here. I promise that my site is pure, no virus, no spyware, no Trojan, no pop ads. You can test my word through intalling Kaspersky or other Antivirus Software. If you want open my site and take latest escalation ID & Activation Code, close your ESET software(disable antivirus and antispyware protection function temporarily) or by proxy or virtual machinor. You can also feed the RSS source http://feed.loserblog.cn.
Difference between the two function of Javascript
the difference between the two function of Javascript
We all know that there are two kinds of Javascript Function definition of the method is very common. For example,
function a () (alert ( "a"))
var a = function () (alert ( "a"))
Although the two kinds defined by the function called when the results of the same, but there is still difference between the middle. Cite a simple example, if we are to re-definition of a (), but the new method should inherit a () inside and all other methods of expansion. This can clearly see the difference between the two methods.
1. First of all, we first establish a temporary variable to store a ()
var b = a;
Then, re-definition of a ()
The first method:
function a () (
b ();
alert ( "ok");
)
The second approach:
a = function () (
b ();
alert ( "ok");
)
It is found that we can try. The first approach to the definition of a () will stack overflow error. The second method is to retain the original success of a () enforced by the script, the success of alert to the "a" "ok" the words that a () method was re-defined.
Here you can clearly distinguish the difference between the two methods. Different definition of the order.
The first one, did not in fact the beginning of a re-definition of the function and inside the implementation of its own.
The second method, a = function () not here to function inside the implementation of a code has been redefined. So here the re-definition is effective.