javascript – XML不能是整个程序

前端之家收集整理的这篇文章主要介绍了javascript – XML不能是整个程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我包含以下js文件(在其中的 jquery),我得到错误在Firebug“ XML不能是整个程序”

JS文件包含参考:

<script src="~/Scripts/scriptname.js" type="text/javascript"></script>

JS文件内容

$("[id*='txtAddress1S']")
  .blur(function(){
   $("[id*='txtAddress1S']")
      .val().match(
          /\b[p]*(ost)*\.*\s*[o|0]*(ffice)*\.*\s*b[o|0]x\b/i)&&
         (alert("Packages are not deliverable to a Post Office Box.
         \nPlease provide a different shipping address."),$("[id*='txtAddress1S']").focus())
  });

提前致谢!

解决方法

可能是您的脚本src属性未被正确理解为〜并被解析为空的< script>标签.使用JavaScript文件的完整路径或相对于其加载页面的路径:
<script src="/full/path/to/Scripts/scriptname.js" type="text/javascript"></script>
<script src="../relative/to/Scripts/scriptname.js" type="text/javascript"></script>
原文链接:https://www.f2er.com/js/155361.html

猜你在找的JavaScript相关文章