- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <title>无标题页</title>
- <script language="javascript" type="text/javascript">
- function displaylist() {
- if(div2.style.display=="none") {
- div2.style.display="";
- } else {
- div2.style.display="none";
- }
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <div id="div1" style="width: 150px">
- <asp:TextBox ID="TextBox1" onkeyup="displaylist()" runat="server" Width="250px"></asp:TextBox></div>
- <div id="div2" visible="false" style="width: 255px; height: 200px; background-color: Yellow;
- display: none">这里可以放内容</div>
- </div>
- </form>
- </body>
- </html>