标签: jquery dom
以下代码是否安全? document可用吗?
document
<html> <head> <script type="text/javascript"> $(document).delegate(".my-class", "click", function() { /* do something here */ } ); </script> </head> </html>
答案 0 :(得分:3)
是的,这是完全安全的。 document始终存在。