$("#theDiv").hover(function(){
$(this).animate( {top: "300px", left: "400px", width: "50px" , height: "50px" },"Fast")
});
$("#theDiv").click(function(){
$(this).stop();
});
代码如上。当我单击它时,我试图停止悬停功能,但它不起作用。还是根本不可能?