在getscript工作之后使用变量

时间:2012-08-29 09:54:25

标签: jquery scope const getscript

我尝试在包含脚本后使用变量,但是它表示变量“PHP_MODULE_ROOT未定义,当它是。

$.getScript("../IMS3/assets/js/globals.js") ;
const CONTROLER = PHP_MODULE_ROOT+'/manageContact.php' ;

global.js中的代码是:

var SYSTEM_ROOT = 'http://place.mysite.com/IMS3' ;  // The system root, this needs to be changed if you move the system.

var ASSETS_ROOT = SYSTEM_ROOT+'/assets' ;       // The root for all things like JS and PHP
var JS_MODULE_ROOT = ASSETS_ROOT+'/js/modules' ;    // The JS modules like dialog boxes and widgets etc.
var PHP_MODULE_ROOT = ASSETS_ROOT+'/php/modules' ;

我已经尝试将const声明作为$ .getScript中的回调声明,但我得到了相同的结果。

0 个答案:

没有答案