我有这个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。这可能吗?