Jquery悬停解除绑定并再次绑定
我目前正在使用 Jquery 的这一点。
$(".option5").toggle(
function () {
$(this).addClass("red"),
$("#check5").attr('checked',true),
$(".option5").unbind('mouseenter');
},
function () {
$(this).removeClass("red"),
$("#check5").attr('checked',false),
});
在第一个函数中,我添加了 mouseenter 的 .unbind ,这正是我所需要的,但在下一个函数中,我应该放置什么来将悬停(mouseenter mouseleave)绑定回函数中。我尝试了一些选项,但不会回到我拥有的悬停功能。
I'm currently using this bit of Jquery.
$(".option5").toggle(
function () {
$(this).addClass("red"),
$("#check5").attr('checked',true),
$(".option5").unbind('mouseenter');
},
function () {
$(this).removeClass("red"),
$("#check5").attr('checked',false),
});
In the first function i have added an .unbind of mouseenter, which does exactly what i need it to, but in the next function, what do i put to bind the hover (mouseenter mouseleave) back into the function. Ive tried a few options but wont go back to the hover function i have.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)