从Drupal中的全局作用域函数访问本地作用域中的函数

时间:2016-02-09 02:13:19

标签: javascript function drupal scope drupal-7

我有这个Drupal Behaviors Javascript代码:

Drupal.behaviors.myid_templates = {
    attach: function(context, settings){
        function local_function(){
             alert('local_function');
        }
    }
}

function global_function(){
    //I want to call local_function here. Is that possible
    local_function();
}

我想从全局范围调用local_function。这可能吗?

0 个答案:

没有答案