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.
我有一个表格,其单元格中包含用户交互控件(按钮、链接等),我想将该表格的某些行“变灰”,以便禁用这些行的所有操作。
知道什么是最好的方法吗?
可以将按钮设置为disabled,但链接仍然可以使用。一种可能的技术可以将 href 设置为临时属性data-link=" ... the link ... ",然后在启用时使用 javascript 将其设置为属性 href。
disabled
data-link=" ... the link ... "
创建禁用的 css 类也可能有助于产生禁用链接的错觉。
jQuery 在这里会变得很方便,但需要安装。