function getVehcile(){
var vehcile = new array();
}
get.hs文件中存在getvehiclefunction
我想从另一个js文件中调用此函数
我该怎么做?
答案 0 :(得分:0)
您只需要确保首先包含getvehiclefunction
。它应该足以确保您的Common.js
文件包含在其他JavaScript之前:
<script src="path/to/Common.js"></script>
<script src="path/to/another.js"></script>