如何使jquery函数与动态变化的元素一起工作

时间:2013-08-30 22:55:06

标签: javascript jquery html

首先让我说我见过this post

表示(api.jquery.com.live().on()允许您分配jquery事件,该事件甚至适用于未来的元素。但我的以下jquery:

    $("#playerImg").on("mouseenter",function () {
        console.log("works");});

在开始时工作,但在我运行此代码之后:

function move(moveTo) {
   document.getElementById(player.currentLocation).innerHTML = "";
      player.currentLocation = moveTo;
   document.getElementById(player.currentLocation).innerHTML += player.displayText;
}

这里是相关变量

var player = {
    "displayText" : "<img src = 'http://3.bp.blogspot.com/-kAhN0HX-MBk/T_5bApfhbJI/AAAAAAAAAuI/lUww8xT9yV8/s1600/smileys_001_01.png'" +
        id='playerImg' "class='onTop' alt='you' border='0' />",

   "currentLocation": 0 //(i use a 5 * 5 table with id's 0-24)
}

上面的代码没有运行。我如何在jquery中创建一个事件,它可以在不存在的元素上运行?

link here

1 个答案:

答案 0 :(得分:5)

像你一样使用.on()应用直接事件,这种事件更快但不会适用于动态元素。

您需要对动态元素使用.on()

$(document).on("mouseenter", '#playerImg',function () {
    console.log("works");
});

document应该是性能增益最接近的静态元素。

旁注,id必须是唯一的,请将其更改为class。上面的代码可能不起作用,因为它使用id。如果是这种情况,并且您不想因任何原因而改变,请使用:

$(document).on("mouseenter", 'img#playerImg',function () {
    console.log("works");
});