高版本js实现live
Posted 安筱雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高版本js实现live相关的知识,希望对你有一定的参考价值。
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <div class="add"> <div class="plus" style="width:50px;height:50px;background-color: yellowgreen">abc</div> </div> <button id="btn">增加</button> <script src="jquery-1.11.3.js"></script> <script> $("#btn").click(function(){ $(".add").append($(".add").html()); }); $(document).on("click",‘.plus‘,function(){ alert(‘11‘); }); </script> </body> </html>
以上是关于高版本js实现live的主要内容,如果未能解决你的问题,请参考以下文章