如何在javascript中顯示和隱藏div以及在c#頁面載入中使用simillarly如何根據ID值調用div可以在此幫助任何人?javascript show hide div
<ul>
<li><a href="#cat1">cat1</a></li>
<li><a href="#cat2">cat2</a></li>
<li><a href="#cat3">cat3</a></li>
</ul>
<div id="cat1">
<asp:UpdatePanel>
<asp:Panel>
<asp:ListView>
</asp:ListView>
</asp:Panel>
</asp:UpdatePanel>
</div>
<div id="cat2">
<asp:UpdatePanel>
<asp:Panel>
<asp:ListView>
</asp:ListView>
</asp:Panel>
</asp:UpdatePanel>
</div>
<div id="cat3">
<asp:UpdatePanel>
<asp:Panel>
<asp:ListView>
</asp:ListView>
</asp:Panel>
</asp:UpdatePanel>
</div>
你是故意不想使用jQuery? – Yuck
@Yuck您的用戶名發表了評論! –
如果你想訪問div服務器端,你將需要添加'runat =「server」'但是如果你有主頁面,這將導致客戶端ID被操縱,因爲html控件變成了服務器端。 – cbillowes