0

你好,我有 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 包含1show the FactoreItems of "FactoreId:1": "FactoreItems:a, b, c, d, e",如果它包含2show the FactoreItems of"FactoreId:2": "FactoreItems:g,f"等等....

4

1 回答 1

1

您发布的 JSON 不正确,已将其修复为 "FactoreId" : num, "FactoreItems": "string"

HTML

<div>1</div>
<div>2</div>
<div>3</div>

jQuery

 //Fixed JSON
 var factore = [{
       "FactoreId": 1, 
       "FactoreItems": "a, b, c, d, e"
   }, {
       "FactoreId": 2,
       "FactoreItems": "g,f"
   }, {
       "FactoreId": 3,
       "FactoreItems": "i, k, h"
   }]
    $('div').on('mouseover', function () {
        $(this).text("FactoreID : "+factore[$(this).text() -1].FactoreId +"FactoreItems"+ factore[$(this).text()-1].FactoreItems);
   });

演示

解释

factore : 是带有 json 的数组

$(this).text() -1返回 div 编号和 -1,因为数组从 0 开始

factore[$(this).text() - 1] 
// if you mouseover div with text one the result will be factore[0]
// then use .FactoreId to get id value
于 2013-10-07T09:57:04.667 回答