当前位置: 代码迷 >> ASP.NET >> getElementById 提示'缺少对象'的有关问题 找不到原因
  详细解决方案

getElementById 提示'缺少对象'的有关问题 找不到原因

热度:8119   发布时间:2013-02-26 00:00:00.0
getElementById 提示'缺少对象'的问题 找不到原因 在线等
Repeater有一些信息页面Load时是收缩的     还有个LinkButton        
<asp:Repeater     ID= "Repeater "     Runat= "server ">    
    <itemtemplate>
          <table>    
                <tr     id= "line001 "     style= "DISPLAY:none;     VISIBILITY:hidden "> </tr>    
                <asp:LinkButton     ID= "LinkButtonSave "     Runat= "server "   CommandName= "Save "     text= "确认 "> </asp:LinkButton>    
          </table>  
    </itemtemplate>
</asp:Repeater>    
 
 
希望点Button时收缩起来的信息保持展开状态     但报错缺少对象        
private     void     Repeater_ItemCommand(object     source,     RepeaterCommandEventArgs     e)    
{    
      if(e.CommandName== "Save ")    
              {    
                      Response.Write( " <script> alert( '更改成功 ') </script> ");    
                      Response.Write( " <script> window.document.getElementById( 'line001 ').style.display     =     'block '; </script> ");    
                      Response.Write( " <script> window.document.getElementById( 'line001 ').style.visibility     =     'visible '; </script> ");    
              }    
}    


------解决方案--------------------------------------------------------
呵呵,有可能是网页没有加载完毕的结果。试一下Page.RegisterStartupScript(JS)
------解决方案--------------------------------------------------------
用 this.Page.RegisterStartupScriptResponse.Write 的脚本会在页面的顶端,些时文档没有加载。
  相关解决方案