Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果将$(document).ready()其放置在作为对话框控件的一部分加载的单独视图中,它将何时运行?是否会按照父页面调用的对话框中视图完全加载后的模式运行?
$(document).ready()
$(document).ready 方法意味着只有在 DOM(文档对象模型/页面的所有元素)成功加载后才运行任何 javascript。
因此,从逻辑上讲,当您将任何 javascript 代码放在 $(document).ready() 下时,它将在页面的所有元素加载后运行。