我在Ext JS中有一个具有text property =
的Button<span class="g-underlined">S</span>earch
我正在编写如下查询:
Ext.ComponentQuery.query('button[text="<span class=\"g-underlined\">S</span>earch"]');
但我无法找到组件
答案 0 :(得分:0)
这将起作用
def read_acronym_meanings(path:str):
with open(path) as f:
acronyms = dict(l.strip().split(',') for l in f)
return acronyms
答案 1 :(得分:0)
要查询元素,我们有另一个函数
Ext.select('.g-underlined');
它将返回具有该类的所有元素。