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.
我正在尝试自定义 Asta 的可过滤投资组合插件。
该插件的作用是仅显示所选类别的图像。它使用“数据类型”将特定图像链接到一个类别,如下所示:
<li data-id="id-1" data-type="blackandwhite">
我的问题是;是否可以为一个列表项提供多种数据类型?如果是这样,怎么做?
我尝试搜索这个问题,但奇怪的是找不到这个看似简单的问题的答案。
是的,有可能。该插件使用li[data-type~=+$filterClass+]名为“属性包含单词”的选择器。这意味着您可以添加多种类型,以空格分隔:例如<li data-id="id-1" data-type="blackandwhite red someothercategory">
li[data-type~=+$filterClass+]
<li data-id="id-1" data-type="blackandwhite red someothercategory">