将$(document).ready放在webform的Master页面中

时间:2015-07-20 03:07:39

标签: javascript webforms master

我使用这个脚本来解决Twitter Bootstrap中不改变活动<li>选项卡颜色的问题。我正在使用webforms。

<script type="text/javascript">
            $(document).ready(function () {
                var url = window.location.pathname;
                var substr = url.split('/');
                var urlaspx = substr[substr.length - 1];
                $('.nav').find('.active').removeClass('active');
                $('.nav li a').each(function () {
                    if (this.href.indexOf(urlaspx) >= 0) {
                        $(this).parent().addClass('active');
                    }
                });
            });
        </script>

现在我对javascript和asp.net都很陌生。所以这可能是一个糟糕的问题,我提前道歉,但我想知道适当的地方。

我最初将它放在Site.Master页面上的<head>标签中。但它没有用。此外,当我将它添加到custom.js文件中时,在身体中调用它,我创建它也不起作用。所以我刚刚将脚本本身添加到了正文中,这是有效的,但有些东西告诉我这不是“最佳实践”方式,并且希望有更多经验的人可以告诉我它应该去哪里,以及为什么。

以下是Master.Site页面的副本以及我尝试过的位置。

<html lang="en">
<head runat="server">
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title><%: Page.Title %> - My ASP.NET Application</title>

    <asp:PlaceHolder runat="server">
        <%: Scripts.Render("~/bundles/modernizr") %>
    </asp:PlaceHolder>
    <webopt:BundleReference runat="server" Path="~/Content/css" />
    <link href="~/favicon.ico" rel="shortcut icon" type="image/x-icon" />
    <link href="~/Content/custom.css" rel="stylesheet" type="text/css" /> <%--Custom CSS created for site--%>

</head>
<body>
    <form runat="server">
        <asp:ScriptManager ID="ScriptManager" runat="server">
            <Scripts>
                <%--To learn more about bundling scripts in ScriptManager see http://go.microsoft.com/fwlink/?LinkID=301884 --%>
                <%--Framework Scripts--%>
                <asp:ScriptReference Name="MsAjaxBundle" />
                <asp:ScriptReference Name="jquery" />
                <asp:ScriptReference Name="bootstrap" />
                <asp:ScriptReference Name="respond" />
                <asp:ScriptReference Name="WebForms.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebForms.js" />
                <asp:ScriptReference Name="WebUIValidation.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebUIValidation.js" />
                <asp:ScriptReference Name="MenuStandards.js" Assembly="System.Web" Path="~/Scripts/WebForms/MenuStandards.js" />
                <asp:ScriptReference Name="GridView.js" Assembly="System.Web" Path="~/Scripts/WebForms/GridView.js" />
                <asp:ScriptReference Name="DetailsView.js" Assembly="System.Web" Path="~/Scripts/WebForms/DetailsView.js" />
                <asp:ScriptReference Name="TreeView.js" Assembly="System.Web" Path="~/Scripts/WebForms/TreeView.js" />
                <asp:ScriptReference Name="WebParts.js" Assembly="System.Web" Path="~/Scripts/WebForms/WebParts.js" />
                <asp:ScriptReference Name="Focus.js" Assembly="System.Web" Path="~/Scripts/WebForms/Focus.js" />
                <asp:ScriptReference Name="WebFormsBundle" />
            </Scripts>
        </asp:ScriptManager>

        <%--Custom JS created for site--%>
        <script src="Scripts/custom.js" type="text/javascript"></script>      
        <%-- This does nt work inside the custom.js --%>
        <script type="text/javascript">
            $(document).ready(function () {
                var url = window.location.pathname;
                var substr = url.split('/');
                var urlaspx = substr[substr.length - 1];
                $('.nav').find('.active').removeClass('active');
                $('.nav li a').each(function () {
                    if (this.href.indexOf(urlaspx) >= 0) {
                        $(this).parent().addClass('active');
                    }
                });
            });
        </script>

1 个答案:

答案 0 :(得分:0)

您是否曾尝试制作js文件,将其命名为“MyScript.js”,并将其保存在文件夹“脚本”中。在你的服务器上。然后将其添加到您的母版页:

    <%--Custom JS created for site--%>
    <script src="Scripts/custom.js" type="text/javascript"></script>
    <script src="Scripts/MyScript.js" type="text/javascript"></script><%-- <<< NEW --%>    

???