我是asp和css概念的新手,在这里我遇到了一个非常基本的问题
我有一个导航栏
<li><a href = "#Div1" >Division 1</a></li>
<li><a href = "#Div2">Division 2</a></li>
我的分部如下
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<div id = "TextBox">
//a text box here which is common and should be displayed with both the sections below
</div>
<div id ="Div1" class= "section">
// some button and text boxes here
</div>
<div id ="Div2" class= "section">
// some button and text boxes here
</div>
</updatePanle>
css文件:
.section { display:none }
.section:target { display: block }
css文件部分定义有助于正确选择分区,但是当页面加载时,只显示顶部的TextBox div。
所以我需要在页面加载时默认显示div1内容,当TextBox div中的文本框由一个值填充时,内容刷新,并且页面上没有div1或div2内容。
div在更新面板中定义
提前感谢您提供一些帮助。