如何将 fbjs 变量与 fbjs undefined 进行比较?

发布于 2024-10-18 03:14:39 字数 302 浏览 2 评论 0原文

我在 fbjs 中有一个警报,它返回未定义,但是当我将 fbjs 变量与 underined 进行比较时,它不起作用......

var params = document.getElementById('ques_form').serialize();
    user_answer = params.radio;
    if(user_answer=="undefined")
    {
        alert("please select any option");
        return false;
    }

i have an alert in fbjs which returns undefined but when i am comparing a fbjs variable with underined it does not work...

var params = document.getElementById('ques_form').serialize();
    user_answer = params.radio;
    if(user_answer=="undefined")
    {
        alert("please select any option");
        return false;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萌逼全场 2024-10-25 03:14:39
if(user_answer == undefined)

或者更正确地说:

if(user_answer === undefined)

undefined 是 javascript 中的“特殊”值,而不是值为“undefined”的字符串。当您与“未定义”进行比较时,您正在比较该变量是否是带有文本“未定义”的字符串,而不是检查 JavaScript 中特殊的未定义值。

学习:
http://www.w3schools.com/jsref/jsref_undefined.asp
http://javascript.about.com/od/reference/g/sundefined.htm

if(user_answer == undefined)

or more correctly:

if(user_answer === undefined)

undefined is a "special" value in javascript, not the string with value "undefined". When you compare to "undefined" you are comparing if that variable is a string with the text "undefined" instead of checking for the special undefined value in javascript.

Learn:
http://www.w3schools.com/jsref/jsref_undefined.asp
http://javascript.about.com/od/reference/g/sundefined.htm

゛时过境迁 2024-10-25 03:14:39

我找到了问题的解决方案

if(first === undefined)   
   alert('First is undefined'); 
else   
   alert('First is defined');

I have found the solution of the problem as

if(first === undefined)   
   alert('First is undefined'); 
else   
   alert('First is defined');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文