我想使用Jquery设置动态数据饼百分比值,下面是代码?[已关闭]

rryofs0p  于 2022-11-03  发布在  jQuery
关注(0)|答案(1)|浏览(114)

**已关闭。**此问题需要debugging details。当前不接受答案。

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
8天前关闭。
Improve this question
我想使用Jquery设置动态数据饼百分比值。下面是代码??我只想使用JQuery动态更改值

<div class="pie" id="lecture-chart" data-pie='{ "speed": 30, "percent": 71, "colorSlice": "#6cb64f", "colorCircle": "#f1f1f1", "round": true }'></div>
jgwigjjp

jgwigjjp1#

我认为您应该将data-pie的值转换为JSON,然后设置percentage的值。类似于:

function updatePercentageValue(value){
    var pieValueString = $("#lecture-chart").data("pie");
    var pieValueObj = JSON.parse(pieValueString);
    pieValueObj["percent"] = value;
    $("#lecture-chart").data("pie", JSON.stringify(pieValueObj))
}

相关问题