基本的Window.alert功能在Meteor中不起作用

时间:2016-01-23 21:17:46

标签: javascript events dom meteor

嗨,我有一个基本功能,我正努力去上班。如果您发现这种情况已经破裂,请告诉我。

'click #addTag': function(event, template) {
var tagTitle = template.find("#AddVideoTags").value;
window.alert(tagTitle);
}

1 个答案:

答案 0 :(得分:-1)

我的猜测是template.find("#AddVideoTags")未定义,当您尝试访问.value时会引发错误。我用一些虚拟代码重现了这个:

'click #addTag': function(event, template) {
    window.alert('This will work');
    var tagTitle = template.find("#ThisDoesNotExist").value; // This throws an exception.
    window.alert(tagTitle); // This will not execute.
}