call函数在jquery中的另一个js文件中声明一个js文件

时间:2014-06-02 12:30:06

标签: javascript jquery asp.net-mvc-3

function getVehcile(){
 var vehcile = new array();

}

get.hs文件中存在getvehiclefunction

我想从另一个js文件中调用此函数

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您只需要确保首先包含getvehiclefunction。它应该足以确保您的Common.js文件包含在其他JavaScript之前:

<script src="path/to/Common.js"></script>
<script src="path/to/another.js"></script>