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.
我正在使用 jQuery 可编辑数据表。我希望表中的某些字段是不可编辑的。所以我使用类名readOnly并在 CSS 中定义如下:
readOnly
.readOnly { readonly: true; }
但是数据字段没有变成readonly:该列中的数据是可编辑的。
readonly
我应该如何克服这个?
使用类名
class="read_only"
这会成功的。