gpt4 book ai didi

javascript - XML 不能是整个程序

转载 作者:可可西里 更新时间:2023-11-01 02:35:59 25 4
gpt4 key购买 nike

当我包含以下 js 文件(其中包含 jquery)时,我在 Firebug 中收到错误“XML can't be the whole program”

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>

关于javascript - XML 不能是整个程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5717249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com