如何将变量(外部js)传递给变量(内部javascript)

时间:2018-07-21 09:45:24

标签: javascript

外部js

var vehicle="car";

内部js

var x;

如何将外部js值“车辆”直接保存在“ x”中。

我不想使用将值传递给任何id的方法(例如:输入文本,段落..)。请直接询问将其传递给方法的方法。

1 个答案:

答案 0 :(得分:1)

全局声明您的for (i in 1:length(file_list$filelist)){ a <-as.character(file_list$filelist[[i]]) #this seemed to be a requirement, that 'wav1.wav' etc be a character temp <-readWave(a) #read the file using tuneR package mx <-max(range(temp@left)) #take some measurement from the left channel file_list$mx[[i]] <-mx #put it in a new column next to the original filename rm(mx); rm(temp); rm(a) #kill unnecessary things before starting again, for just in case } 变量。因此,您可以在其他js文件中访问它。

vehicle

不建议使用全局变量,如果您不小心将私有变量命名为//external.js var vehicle = 'car'; <script src="external.js"></script> <script> var x = vehicle; console.log(x); </script> ,则全局变量值会被函数等内部的私有变量覆盖。

了解best practices of JavaScript