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.
我在Asp.net MVC3. 我正在使用jquery视图razor。是否可以document.ready(function(){});在同一视图页面中使用 2?
Asp.net MVC3
jquery
razor
document.ready(function(){});
是的,完全可以在同一个 HTML 文档中使用超过 1 个 document.ready 调用。jQuery 会将它们聚合成一个 javascript 代码,当 DOM 准备好时将调用该代码。