我有这个js代码:
(function($, undefined) {
$("a").click(function(event) { //or another elemtnt
alert('Hello!');
})
})(jQuery);
当然还有链接:
<a href="http://google.ru/" target="_blank">Google</a>
JS代码不起作用,但是如果我将其更改为:
(function($, undefined) {
$("*").click(function(event) {
alert('Hello!');
})
})(jQuery);
一切正常!