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.
目前有没有办法突出显示表格中的一行?例如,我想列出一个条目表,并能够突出显示一行并单击Process。我在网上找不到任何这样的例子——我敢肯定有办法,对吧?
可以基于单选按钮来突出显示该行 - 用户选择他们想要更新的行的单选按钮,然后单击“处理”或他们想要的任何按钮,并且将为该行执行该操作。
任何关于我应该看哪里的帮助(或只是一个简单的例子)将不胜感激!
如果您要使用单选按钮,请尝试在其上添加 jQuery 操作。
就像是:
onClick: ((html jQuery: #tableRowId) toggleClass: 'highlight')
然后让 CSS 突出显示该行
.hightlight { background-color:light-yellow }
如果您需要更广泛的示例,请告诉我。