默认C#ASP.NET导航栏大小调整问题

wlp8pajw  于 2023-01-14  发布在  .NET
关注(0)|答案(2)|浏览(166)

我是新的asp,所以我仍然试图找到我周围的方式。我遇到了一个问题,默认的导航栏,自带的项目是调整大小的内容,如果我改变窗口的宽度。
默认项目含义:在VS13中创建一个新的ASP.NET Web窗体项目。该项目的导航模板是我最初使用的。只需添加一些链接到默认值,您就可以看到我遇到的大小调整问题。
我不知道如何改变内容的填充时,顶部导航栏的大小。
示例:
之前:

之后:

我该怎么阻止这一切的发生?
编辑:来自站点的代码。主数据

<form runat="server">
        <asp: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" />
                <%--Site Scripts--%>
            </Scripts>
        </asp:ScriptManager>

        <div class="navbar navbar-inverse navbar-fixed-top">
            <div class="container">
                <div class="navbar-header">
                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>
                    <a class="navbar-brand" runat="server" href="~/">Winded Warriors</a>
                </div>
                <div class="navbar-collapse collapse">
                    <ul class="nav navbar-nav">
                        <li><a runat="server" href="~/">Home</a></li>
                        <li><a runat="server" href="~/Players">Players</a></li>
                        <li><a runat="server" href="~/Stats">Stats</a></li>
                        <li><a runat="server" href="~/MatchHistory">Match History</a></li>
                        <li><a runat="server" href="~/Schedule">Schedule</a></li>
                        <li><a runat="server" href="~/Photos">Photos</a></li>
                        <li><a href="http://www.facebook.com/WindedWarriors"><img src="http://www.windedwarriors.com/facebook-icon.png" height="16"></a> </li>
                        <li><a href="https://www.youtube.com/channel/UCudcTnN9fHNLigUTvmGv_Fg"><img src="http://www.windedwarriors.com/YouTube-icon.png" height="16"></a></li>
                    </ul>
                </div>
            </div>
        </div>
        <!-- why doesnt this not space correctly???? -->
        <div class="container body-content">
            <asp:ContentPlaceHolder ID="MainContent" runat="server">
            </asp:ContentPlaceHolder>
            <hr />
            <footer>
                <p>&copy; <%: DateTime.Now.Year %> - Winded Warriors Soccer</p>
            </footer>
        </div>
    </form>

文件: Bootstrap . css http://s000.tinyupload.com/?file_id=22346182312171777192站点. css http://s000.tinyupload.com/?file_id=24528713647080441261

efzxgjgh

efzxgjgh1#

问题很可能是在导航div之后有一个float没有被清除,或者导航div使用了position:absolute。
没有看到html/css,我不能肯定地告诉你。

m4pnthwp

m4pnthwp2#

在aspx中,为第一个div分配ID

<div id="myNavBar" class="navbar navbar-inverse navbar-fixed-top">

那么你可以写下面的JS

<script type="text/javascript">
        function autocollapse() {
            var navbar = $('#myNavBar');
            navbar.removeClass('collapsed'); 
            if (navbar.innerHeight() > 50)
                navbar.addClass('collapsed'); // collapse mode
        }
    $(document).on('ready', autocollapse);
    $(window).on('resize', autocollapse);
</script>

你能改变50在这navbar.innerHeight() > 50行到这实际高度你的导航条在这第一图象

相关问题