这段代码不起作用,我做错了什么?
坦克。
var x;
x=jQuery(document);
x.ready(inicializarEventos);
function inicializarEventos()
{
var x;
x=jQuery(".Caja2");
x.hover(entraMouse,saleMouse);
}
function entraMouse()
{
jQuery(".Caja2").stop().fadeOut();
}
function saleMouse()
{
jQuery(".Caja2").stop().fadeIn();
}