你好,
我有一个 ASP.NET MVC 站点,我在 MasterPage 中使用以下链接
<script type="text/javascript" src="../../../Scripts/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery-ui-1.8.11.custom.min.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery.cascadingDropDown.js"></script>
<script type="text/javascript" src="../../../Scripts/jquery.maskedinput-1.2.2.js"></script>
从 Visual Studio 2010 中的内置 IIS 和主机 (IIS7) 运行时,这可以正常工作。但是当在我自己的 IIS7 下的 Default Web Site \ MySite 部署它时,脚本将获得如下路径:
http://localhost/Scripts/jquery.cascadingDropDown.js
代替 :
http://localhost/myPage/Scripts/jquery.cascadingDropDown.js
为什么这在 VS IIS 和我的主机 IIS 中有效,但在我的本地计算机 IIS 上无效?
除此之外,网页运行良好。