0

看看这个答案:https://stackoverflow.com/a/10746567/1931288,它将键值对传递给一个函数,我想以 JSON 格式将数据保存在外部。

这是所需的格式:

var wordTimes = {
  "w1": { start: 1, end: 1.5 },
  "w2": { start: 1.9, end: 2.5 },
  "w3": { start: 3, end: 4 }
};

$.each(wordTimes, function(id, time) {
  pop.footnote({
    start: time.start,
    end: time.end,
    text: '',
    target: id,
    effect: "applyclass",
    applyclass: "selected"
  });
});

我想要做的是解析 JSON 数据以实现类似的格式。有没有方便的方法来做到这一点?

var wordTimes = jQuery.parseJSON('{"id": "w1", "time": {"start":1, "end":3}}');

解析数据后,我不知道该怎么办。

提前致谢。

4

0 回答 0