Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请告诉我如何在 td 表中隐藏 textarea,我必须使用什么属性?
<td class='odd text'><textarea placeholder='Start time' ></textarea> </td>
与隐藏其他任何内容相同:style="display:none".
style="display:none"
似乎在这个问题中有表格没有任何区别。要使 textarea 隐藏,请display:none像这样设置样式属性:
display:none
<td class='odd text'><textarea placeholder='Start time' style="display:none" ></textarea> </td>