首页 > 解决方案 > 未捕获的 ReferenceError:未定义自动计算

问题描述

我在 Firefox 开发人员控制台中显示此错误。尝试并未能解决它,并希望得到任何帮助。

谢谢

addDOMLoadEvent(Start_Tags);

function Start_Tags() {
    autocomp.start('tags','torrents');  
    resize('tags'); 
}

function clicked(tag) {
    
    if (tag===null || tag=='') return;
    if($('#tags').raw().value == "") {
        $('#tags').raw().value = tag; 
    } else {
        $('#tags').raw().value = $('#tags').raw().value + ' ' + tag;
    }
    resize('tags'); 
    $('#torrentssearch').raw().value ='';
    $('#torrentssearch').raw().focus();
    //CursorToEnd($('#tags').raw());
    
}

标签: javascriptundefined

解决方案


推荐阅读