js设置点击事件能生效,但是初始化事件不能生效,frm报表块

Form65.frm

$(".x-table.ZXZJ1table td").mousemove(function() {

//所在单元格背景为黑色

$(this).css("background-color", "#E7F3FF");

});

//鼠标点击时

$(".x-table.ZXZJ1table td").mousedown(function() {

//所在单元格背景为黑色

$(this).css("background-color", "#E7F3FF");

});

//鼠标离开

$(".x-table.ZXZJ1table td").mouseout(function() {

//所在单元格背景为白色

$(this).css("background-color", "white");

});

FineReport caomengfine 发布于 2021-4-25 09:16 (编辑于 2021-4-25 10:18)
1min目标场景问卷 立即参与
回答问题
悬赏:3 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共1回答
最佳回答
0
axingLv6专家互助
发布于2021-4-25 09:37

初始化事件要加个延迟

setTimeout(function(){

$(".x-table.ZXZJ1table td").mousemove(function() {

//所在单元格背景为黑色

$(this).css("background-color", "#E7F3FF");

});

//鼠标点击时

$(".x-table.ZXZJ1table td").mousedown(function() {

//所在单元格背景为黑色

$(this).css("background-color", "#E7F3FF");

});

//鼠标离开

$(".x-table.ZXZJ1table td").mouseout(function() {

//所在单元格背景为白色

$(this).css("background-color", "white");

});

},1000)

  • 2关注人数
  • 526浏览人数
  • 最后回答于:2021-4-25 10:18
    请选择关闭问题的原因
    确定 取消
    返回顶部