当前位置 : 主页 > 网页制作 > Bootstarp >

Bootstrap默认调试脚本代码 – 是否有必要?

来源:互联网 收集:自由互联 发布时间:2021-06-12
在某些bootstrap示例模板中,它们包含以下代码: !-- Just for debugging purposes. Don't actually copy these 2 lines! -- !--[if lt IE 9]script src="../../assets/js/ie8-responsive-file-warning.js"/script![endif]-- 这是否意味着
在某些bootstrap示例模板中,它们包含以下代码:

<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
    <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->

这是否意味着这些行实际上不应包含在最终站点构建中?我搜索了几个开发网站,人们在这些网站上询问是否在他们的设计中包含bootstrap,大多数响应都是从包括这些线的bootstrap示例中剪切和粘贴的.因此,只需尝试确定在构建实际网站时是否应删除它们.

谢谢.

Does this mean that those lines should not actually be included in final site builds?

是的,你应该排除这些行.否则,我不会有added that explanatory HTML comment in the first place.

所有ie8-responsive-file-warning.js确实向试图使用带有IE8的file:// URL的开发人员显示错误消息.它在生产代码中没用.

同样,ie-emulation-modes-warning.js只是向开发人员显示错误消息,试图不明智地使用IE的不可靠仿真模式功能.再次,在生产中没用.

网友评论