javascript – 如何判断属性是否存在且为false

前端之家收集整理的这篇文章主要介绍了javascript – 如何判断属性是否存在且为false前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很难确定传入 jquery模板的数据是否存在,并且在没有出错的情况下为false.这是我用来测试的
<html>
<head>
<title>jQuery Templates {{if}} logic</title>
</head>
<body>

<p id="results"></p>
<p>How do you test if the Value exists and is false?</p>

<script id="testTemplate" type="text/html">

    Test ${Test}:

    {{if Value}}
        Value exists and is true
    {{else}}
        Value doesn't exist or is false
    {{/if}}

    <br/>

</script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.tmpl.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
        $("#testTemplate").tmpl({Test:1}).appendTo("#results");
        $("#testTemplate").tmpl({Test:2,Value:true}).appendTo("#results");
        $("#testTemplate").tmpl({Test:3,Value:false}).appendTo("#results");
    });
</script>

</body></html>

有谁知道怎么做?

解决方法

你可以使用=== false check在那里使用另一个else语句,如下所示:
{{if Value}}
    Value exists and is true
{{else typeof(Value) != "undefined" && Value === false}}
    Value exists and is false
{{else}}
    Value doesn't exist or isn't explicitly false
{{/if}}

You can test it out here.检查类型是因为只有Value === false才会得到Value is not defined error.您还可以添加其他检查,例如{{else typeof(Value)==“undefined”}}如果未指定值,则为true.

原文链接:https://www.f2er.com/js/240733.html

猜你在找的JavaScript相关文章