javascript – 无法在jquery document.ready中初始化对象

前端之家收集整理的这篇文章主要介绍了javascript – 无法在jquery document.ready中初始化对象前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个名为concept的 javascript对象:
function concept() {
    this.ConceptId = 0;
    this.Name = "";
}

我试图在jQuery document.ready中启动它.

$(document).ready(function() {
    var concept = new concept;
});

它返回一个错误

Uncaught TypeError: concept is not a constructor

如果我在document.ready中移动对象,它就可以了.

$(document).ready(function() {
    function concept() {
        this.ConceptId = 0;
        this.Name = "";
    }
    var concept = new concept;
});

我仍然是javascript的新手,据我所知,document.ready在DOM完成时运行.我不明白为什么它无法访问document.ready范围中定义的对象.

这是小提琴:https://jsfiddle.net/49rkcaud/1/

解决方法

问题是因为你正在重新定义概念.您只需要更改变量的名称
$(document).ready(function() {
    var foo = new concept; // change the variable name here
    alert(foo.ConceptId); // = 0
});

function concept() {
    this.ConceptId = 0;
    this.Name = "";
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
原文链接:https://www.f2er.com/jquery/157502.html

猜你在找的jQuery相关文章