gpt4 book ai didi

javascript - 获取html数据属性字符串甚至其值 bool 值

转载 作者:行者123 更新时间:2023-12-02 15:08:50 25 4
gpt4 key购买 nike

这是我的 html;

<div id="myDiv" data-status="@Model.Approved"> </div>

在 JavaScript 端;

var currentStatus = $("#myDiv").data('status');

根据模型,currentStatus 始终为字符串“False”或“True”。已批准,但我想将其获取为 true 或 false 等 bool 值。

我该怎么做,你能帮我吗?

最佳答案

您可以使用 === 运算符执行以下操作。

var currentStatus = $("#myDiv").data('status')==="True";

更新:要获取null,请执行此操作。

var status = $("#myDiv").data('status');
var currentStatus;

if (status == "True") {
currentStatus = true;
} else if (status == "False") {
currentStatus = false;
} else {
currentStatus = null;
}

关于javascript - 获取html数据属性字符串甚至其值 bool 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34924753/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com