2016-01-23 48 views
1

嗨我有一個基本的功能,我試圖去工作。請讓我知道你看到這個問題的任何原因。基本Window.alert函數不工作在流星

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

是否是錯字? '#AddVideoTags'應該是'#addVideoTags'? –

回答

-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. 
}