在同一个 div 上附加悬停和 onclik 功能的正确方法是什么?
这是我尝试过的,但没有奏效(单击没有任何作用):
$(function outlineHider(){
$("#hotspot").hover(
function() {
$("#outlines").show(); //showing another div element
function bindClick() {
$("#hotspot").click(callAnotherFunction())};
},
function() {
$("#outlines").hide();
}
);
});