你好,我有 3 个包含 1、2、3 的 DIV
<div>1</div>
<div>2</div>
<div>3</div>
并拥有这个 JSON
[{
"FactoreId:1": "FactoreItems:a, b, c, d, e"
}, {
"FactoreId:2": "FactoreItems:g,f"
}, {
"FactoreId:3": "FactoreItems:i, k, h"
}]
我希望当我将鼠标悬停在检查其值的 DIV 上时。
如果 DIV 包含1
show the FactoreItems of "FactoreId:1": "FactoreItems:a, b, c, d, e"
,如果它包含2
show the FactoreItems of"FactoreId:2": "FactoreItems:g,f"
等等....