我应该如何使用Jasmine测试jQuery Hover动作?
我的jQuery看起来像
$('.class').hover(
function() { $('#someid').hide(); },function() { $('#someid').show(); }
);
我怎么能模拟用茉莉花移动悬停动作并期望’someid’元素被隐藏并显示它应该?
最佳答案
原文链接:https://www.f2er.com/jquery/428040.html我应该如何使用Jasmine测试jQuery Hover动作?
我的jQuery看起来像
$('.class').hover(
function() { $('#someid').hide(); },function() { $('#someid').show(); }
);
我怎么能模拟用茉莉花移动悬停动作并期望’someid’元素被隐藏并显示它应该?