所以我有这个小提琴http://jsfiddle.net/3QuSm/1/作为下拉列表。
$(".image-box").mouseover(function() {
$(".expand-box").show();
}).mouseout(function() {
$(".expand-box").hide();
});
这工作得很好,但是当我尝试将它集成到我的应用程序中时,JQuery 不起作用。我是 JQuery 的新手,我真的不知道该放在哪里。我的代码类似于http://pastie.org/8042113。有什么帮助吗?