私はできるだけシンプルにしようとします。誰かがタグにマウスオーバーしたときに、このリンクの4つのボタンのように、divで簡単な可視性の切り替えを実現しようとしています:
今問題は、タグのマウスオーバーで表示したい、または表示したいのですが、divを非表示にすると元に戻らないので、複数のことを試しましたが、いくつかは
$("#function").on("mouseover",this, function () {
$(this).addClass("show");
})
$("#function").on("mouseout",this, function () {
$(this).removeClass("show");
$(this).addClass("hide");
})
もう一つは:
$("#function").hover(
function () {
$(this).addClass("hide");
},
function () {
$(this).removeClass("hide");
}
);
そしてまた
$("#butt").on("mouseover", this, function(){
$(this).find("div#function").show();
//$("#function").toggleClass("visible");
});
$("#butt").on("mouseout", this, function(){
$(this).find("div#function").hide();
//$("#function").toggleClass("visible");
});