关于一般 Web 应用程序的类型
是否存在只有静态 HTML 页面的静态 Web 应用程序?如果有的话,能否提供一些实际例子?
Are there static web applications where they only have HTML pages which are static? If there are, can you please provide some practical examples?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
取决于您对静态和动态的定义。可以有一个 Web 应用程序,其中原始下载的 HTML 是静态的,然后使用 JavaScript 和 AJAX 回调在浏览器中操作 DOM,但我可能仍将其描述为“动态”Web 应用程序。
Depends on your definitions of static and dynamic. It's possible to have a web application where the original downloaded HTML is static, then the DOM is manipulated in the browser using JavaScript and AJAX callbacks, but I'd probably still describe this as 'dynamic' web application.
不,根据定义,Web 应用程序必须是动态的。
No, by definition, a web application has to be dynamic.