asp .net webform import jquery 404

时间:2016-01-25 08:20:18

标签: c# jquery asp.net

案例:

1

dir struct

目录结构就是那样

    2。

    load

    这就是我加载jquery的方法。我尝试过使用:

    <%= this.ResolveClientUrl("~/Scripts/jquery-version.min.js") %>
    

    不起作用。使用

    <%= Page.ResolveUrl("~/Scripts/jquery-version.min.js") %>
    

    不起作用。使用

     <%# this.ResolveClientUrl("~/Scripts/jquery-version.min.js") %>
    

    也不行。然后我尝试检查元素:

    inspect

    然后,我尝试直接在浏览器上加载

    directly

    为什么我的app文件夹打印了两次?在请求的URL?这使得代码不起作用。

    我不明白设置在哪里,但我会尝试所有方法但仍无效?

    这是我的web root的完整目录: C:\托阿\ Kerjaan \ E-ProcNominative \ E-PROC \ WebApplication的

1 个答案:

答案 0 :(得分:3)

问题在于jQuery文件名,最后有一个"导致IIS搜索错误的文件。 IIS搜索不存在的jquery-1.7.1.js%22

<script src="here at the end jquery-1.7.1.js"'> ... here removed the `"` after `js`.

(发现它有点棘手:))