如何从DOM中的状态函数获取状态值

时间:2018-10-03 09:13:43

标签: javascript jquery html html5

我正在尝试获取jQuery中产品的状态。我具有此功能来获取我的产品的状态:

getStatus: function () {
  var status = 'Active';
  if (this.get("Terminated") === '1') 
    status = 'Terminated';
  else if (this.get("PR_Active") != '1') 
    status = 'Inactive';
  return status;
},

我考虑过要做这样的事情以在DOM中显示它:

$('#status').append(getStatus()); //obviously this is not working :(

在这样的范围内:

<span id="status"></span>

但是我没有看到结果。如何使用getStatus()函数显示产品的实际状态?

1 个答案:

答案 0 :(得分:0)

发现了问题,确切地说是您在说什么。我以错误的方式访问该函数...现在看起来像这样:

$('#status').append(this.getStatus(status));

还有VOILA!