Javascript中的奇怪字符导致它无法加载

前端之家收集整理的这篇文章主要介绍了Javascript中的奇怪字符导致它无法加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的网站在localhost上工作正常,我的 javascript正在加载并正常工作.但是当我部署网站时,脚本无法运行.当我右键单击页面并说出查看源然后查看链接的脚本文件时,它在文件的开头有一些奇怪的字符(function($){

在localhost上,我的脚本文件就像这样开始(函数($){

是什么导致这些字符被添加到我的javascript文件中?

解决方法

您必须以“UTF-8无BOM”编码重新保存文件.
您可以使用记事本或其他编辑器.

在视觉工作室:

By default,Visual Studio uses UTF encoding with the BOM; however,you can save it to a different encoding if you’d prefer. When you go to the Save As dialog,you can expand the Save button to see the ‘Save with Encoding’ option. This will prompt you for a different encoding,and I think one of the Unicode options will leave out the BOM (somewhere in the list is UTF-8 without signature).

资料来源:http://forums.silverlight.net/forums/t/144306.aspx

原文链接:/js/150036.html

猜你在找的JavaScript相关文章