在DOM准备好之前将事件监听器附加到$(document)是否安全?

时间:2012-07-24 15:31:36

标签: jquery dom

以下代码是否安全? document可用吗?

<html>
  <head>
    <script type="text/javascript">
      $(document).delegate(".my-class", "click", function() { /* do something here */ } );
    </script>
  </head>
</html>

1 个答案:

答案 0 :(得分:3)

是的,这是完全安全的。 document始终存在。