我正在尝试通过 javascript创建hover
和输出。hover
我有
test.prototype.build = function(){
other codes...
link.href = '#';
link.innerHTML += 'test'
link.onmouseover = hover
link.onmouseout = hoverOut
other codes...
}
function hover(){
var div = document.createElement('div');
div.class='testDiv';
div.innerHTML = 'test';
$(this).prepend(div);
}
function hoverOut(){
var div = document.getElementsByClassName('testDiv');
div.style.display='none';
}
我的任务是创建一个hover
和hover out
函数。我的问题是我不确定testDiv
当用户将鼠标悬停在链接之外时如何隐藏。
getElementsByClassName
在我的情况下似乎不起作用。在javascript中有更好的方法吗?非常感谢!