标签: javascript jquery
我需要全身鼠标悬停功能。当我进入其他页面时,我的一些内容会追加特定的div。
我的代码是:
$('body').mouseover(function() { $('#text').append('<div>New content</div>'); });
答案 0 :(得分:3)
如果内容物适合较低的高度,身体将不会总是具有其完整的潜在高度。
您可以改为使用$('html').mouseover:http://jsfiddle.net/mPdd7/。
$('html').mouseover