在同一個div上掛上懸停和onclik功能的正確方法是什麼?懸停並點擊同一div上的功能
這裏是我試過,但它沒有工作(點擊什麼都不做):
$(function outlineHider(){
$("#hotspot").hover(
function() {
$("#outlines").show(); //showing another div element
function bindClick() {
$("#hotspot").click(callAnotherFunction())};
},
function() {
$("#outlines").hide();
}
);
});
可能重複 - http://stackoverflow.com/questions/2432003/combine-hover-and-click-functions-jquery – Neil