当前位置: 代码迷 >> ASP.NET >> 为什么table 的visible 属性无效呢解决思路
  详细解决方案

为什么table 的visible 属性无效呢解决思路

热度:5324   发布时间:2013-02-26 00:00:00.0
为什么table 的visible 属性无效呢
比如:visible=false     为什么无效呢
           

                                                            <table   border= "0 "   cellpadding= "0 "   cellspacing= "0 "   width= "100% "     visible=false   >
                                                                            <tbody>
                                                                                <tr   width= "100% ">
                                                                                    <td   width= "100% "> <div   align= "left "   style= "font-size:14pt "> <img   src= "../Images/conent_list.jpg "   height= "9 "   hspace= "2 "   width= "9 "   /> <b> <%#   DataBinder.Eval(Container.DataItem, "CityName ")   %> </b> </div> </td>
                                                                                    <td   align= "right "> &nbsp; </td>
                                                                                </tr>
                                                                            </tbody>
                                                                        </table>

------解决方案--------------------------------------------------------
html的table 没有这个属性。 <table border= "0 " style= "display:none "
  相关解决方案