在任何情况下,从 Visual Studio 2008 创建的 Js 文件中删除 BOM 会导致问题吗?
我需要使用 Rhino 和 Jasmine 自动测试我们的 javascript 文件。 我们在 Visual Studio 中创建了很多 js 文件,因此包含字节顺序标记...
Rhino 不喜欢这个并且抱怨 BOM...
是否有任何情况,无论多么边缘,都会导致如果我只是从 Javascript 文件中删除 BOM,javascript 会发生故障吗?
I need to automate tests of our javascript files using Rhino and Jasmine.
We have a lot of js files created in visual studio, and thus contain a byte order mark...
Rhino doesn't like this and moans about the BOM...
Is there any case, no matter how fringe, that will cause the javascript to malfunction if I just strip out the BOM from the Javascript files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有些浏览器可能也不喜欢 BOM。无论如何,最好将其保留并在使用/发送文件时指定正确的编码。
Some browsers may dislike the BOM too. It is better to leave it out anyway and specify proper encoding when using/sending the file.