我的js
文件forms.js
如下所示。
使用来自其他requirejs
文件的js
来调用此文件。
即使function(){}
中已存在所需的js
文件,head
中编写的代码是否仍会运行?
如果否,那么有没有办法运行它?
var scriptpath = Core.path;
require([scriptpath + "jquery-datepicker.min.js"], function(){
//some code goes here
});
答案 0 :(得分:0)
即使文件已包含在head
中,代码也会运行。但问题如下:
如果您使用head
,为什么要将文件包含在requirejs
中? requirejs
作业是为您找到该文件。