私がやろうとしているのは、ドキュメントの境界線を青から別のものに変更することです。何か案は?
現在のコード: http://jsfiddle.net/NqTuv/
なぜこれが機能しないのですか?
Jクエリ:
$(document).ready(function(){
$("#btn1").click(function(){
$("#header").addClass("hover");
$("#header").removeClass("no_hover");
};
$("#btn2").click(function(){
$("#header").removeClass("hover");
$("#header").addClass("no_hover");
};
$(".guess_box").hover(function(){
//This is the mouseenter event handler
$(this).addClass("my_hover");
};
function(){
//this is the mouseleav event handel
$(this).removeClass("my_hover");
};
};