这是我的html;

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


在javascript端;

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


根据model.Approved,currentStatus始终为字符串“ False”或“ True”,但我想将其作为布尔值(如true或false)获得。

我该怎么办,您能帮我吗?

最佳答案

您可以像使用===运算符一样进行操作。

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/

10-10 14:14