Ajax.request({   
   method:'POST',
   url:'js/'+ id +'.js', 
   scope: this,   
   success: function(response){ 
 var respobj=eval(response.responseText);
 
 
}   
      });我载入了一个动态js文件到页中现在问题是我想在chrome 下的对这个动态js调试,打开js调整器发现它只显示页中的js而对种动态加载的页并不显示无法调试。这个问题在FF中firebug是不存在的。