答案 0 :(得分:6)
$(document).ready(function() {
$("#wrapper").bind('mousemove', function(e) {
$("#tail").css({
top: e.pageY
});
});
});
补充:要回到起始位置:
$(document).ready(function() {
$("#wrapper").hover(function() {
$.data(this, "tail_Y", $("#tail").css("top"));
}, function() {
$("#tail").css("top", $.data(this, "tail_Y"));
}).bind('mousemove', function(e) {
$("#tail").css({
top: e.pageY
});
});
});
答案 1 :(得分:0)
可能有帮助
$(document).bind('mousemove', function(e){
$('#tail').css({
top: e.pageY
});
$('#wrapper').click(function(){
xyz();
});
});
function xyz()
{
alert('hello');
}
答案 2 :(得分:0)
试试这个:
$("#wrapper").mouseover(function() {
// your function here
alert("mouse over red area");
});
答案 3 :(得分:0)
dom准备就绪后,您必须确保运行此代码:
$("#wrapper").bind('mouseenter', function(e) {
alert("Entered Wrapper")
});