jquery中,在mouseover事件中,我用了setTimeout(),请问如何在setTimeout中得到发生mouseover的元素?
我的代码截取如下:。。。。。。varhandle=null;$("#div_menu_1_cona").mouseover(function(){handle=setTi...
我的代码截取如下:
。。。。。。
var handle = null;
$("#div_menu_1_con a").mouseover(function () {
handle = setTimeout(????, 3000);
}).mouseout(function () {
clearTimeout(handle);
});
------------------
上面代码中的???处就是要将当前鼠标所在的a 元素(发生mouseover的对象)的样式设置为红色字体!! 不知道怎么写,我在上面的???处如下书写,失败:
function(){ $(this).css({"font-size":"16px","color":"Red","font-weight":"bold"});}
请大家指教! 展开
。。。。。。
var handle = null;
$("#div_menu_1_con a").mouseover(function () {
handle = setTimeout(????, 3000);
}).mouseout(function () {
clearTimeout(handle);
});
------------------
上面代码中的???处就是要将当前鼠标所在的a 元素(发生mouseover的对象)的样式设置为红色字体!! 不知道怎么写,我在上面的???处如下书写,失败:
function(){ $(this).css({"font-size":"16px","color":"Red","font-weight":"bold"});}
请大家指教! 展开
1个回答
展开全部
贴进去试试,呵呵...
$("#div_menu_1_con a").mouseover(function () {
var target=$(this);
handle = setTimeout(function(){target .css({"font-size":"16px","color":"Red","font-weight":"bold"});}, 3000);
}).mouseout(function () {
clearTimeout(handle);
});
$("#div_menu_1_con a").mouseover(function () {
var target=$(this);
handle = setTimeout(function(){target .css({"font-size":"16px","color":"Red","font-weight":"bold"});}, 3000);
}).mouseout(function () {
clearTimeout(handle);
});
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询