我有一个元素#standardBox

#standardBox.click --> replaces itself with #newBox

#newBox.click --> replaces itself with #standardBox

但是,最新的#standardBox没有单击事件侦听器。我希望它具有单击事件侦听器及其随后创建的元素。这正在进入递归循环,我不知道该如何解决。

我将其用于具有标准内容的标头,该标头被替换为一些中间/新内容,再次是回到标准内容...

谢谢。

的HTML

<div id="container">
    <div id="standardBox"></div>
</div>


的CSS

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
#container {
    position: relative;
    height: 5em;
    width: 5em;
    background: #C5CAE9;
}
#standardBox {
    position: absolute;
    top: 20%;
    right: 20%;
    bottom: 20%;
    left: 20%;
    background: #ffffff;
    cursor: pointer;
}
#newBox {
    height: 3em;
    width: 3em;
    background: #000000;
    cursor: pointer;
}


JAVASCRIPT

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$('#standardBox').click(function(){
   $('#container').html('<div id="newBox"></div>');
   // register event handler for new element created
    $('#newBox').click(function(){
        $('#container').html('<div id="standardBox"></div>');
        // but this #standardBox has no click event listener
    });
});


http://codepen.io/anon/pen/YPLKLq

最佳答案

像这样将处理程序附加到主体上:

$("body").on("click", "#standardBox", function(){
    $('#container').html('<div id="newBox"></div>');
})
.on("click", "#newBox", function(){
    $('#container').html('<div id="standardBox"></div>');
});


这会使主体侦听来自#standardBox#newBox的事件。请注意,this变量仍设置为#standardBox#newBox元素。

09-25 21:33