我听说全局变量不好,我应该使用什么替代方案?
function globalVariables(Variable,Value)ValueVariableValuefunction globalVariables()function globalVariables(Variable)Variable
globalVariables();function append(){
globalVariables("variable1","value1"); //globalVariables() would append variable1 to it's local array.};function retrieve(){
var localVariable1 = globalVariables("variable1"); //globalVariables() would return "value1".};function retrieveAll(){
var localVariable1 = globalVariables();
//globalVariables() would return the globalVariable()'s entire, local [persistently stored between calls] array.};function set(){
globalVariables("variable1","value2"); //globalVariables() would set variable1 to "value2".};慕田峪7331174
交互式爱情
相关分类