潜台词 - 缺少脚本
我是 SubText 新手,文档还有其他位置吗?
无论如何,我已将我的网站模板导入到 pagetemplate 文件中 裸露的皮肤。我现在需要添加 3 个 JS 文件。所以我已经完成了 下面,
<SkinTemplate Name="Naked" TemplateFolder="Naked"
StyleMergeMode="MergedAfter">
<Styles>
<Style href="~/skins/_System/commonstyle.css" />
<Style href="~/skins/_System/commonlayout.css" />
</Styles>
<scripts>
<Script Src="~/scripts/jquery-1.3.2.min.js" />
<Script Src="~/scripts/cufon-yui.js" />
<Script Src="~/scripts/myriadPro_400.font.js" />
</scripts>
</SkinTemplate>
不过这3个JS文件好像没有拉通,它们在 脚本文件夹。我该如何调试这个?
I'm new to SubText, is there another location for the Docs?
Anyway, I've imported my sites template into the pagetemplate file in
the Naked skin. I now need to add 3 JS files. So i';ve done the
following,
<SkinTemplate Name="Naked" TemplateFolder="Naked"
StyleMergeMode="MergedAfter">
<Styles>
<Style href="~/skins/_System/commonstyle.css" />
<Style href="~/skins/_System/commonlayout.css" />
</Styles>
<scripts>
<Script Src="~/scripts/jquery-1.3.2.min.js" />
<Script Src="~/scripts/cufon-yui.js" />
<Script Src="~/scripts/myriadPro_400.font.js" />
</scripts>
</SkinTemplate>
However these 3 JS files do not seem to be pulled through, they are in
the scripts folder. How can I go about debugging this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
<脚本>应该是<脚本> (注意大小写)。
尝试一下,看看是否有效。
<scripts> should be <Scripts> (notice capitalization).
Try that and see if it works.