我在qQuery fuction下面有这个,它将几个对象设置为null。
$.fn.myfunction = function() {
var newAppointmentDetails = {
AppointmentStatusTypeId: null,
AppointmentStatusId: null,
AppointmentType: null,
CallDate: null,
}; }`
我从我的视图文件(单独的文件)中调用此函数'myfunction',我得到对象未定义错误。
fn.myfunction();
如何调用此功能?
答案 0 :(得分:0)
声明如下:
var myFunction = function(){ var newAppointments = ... };
然后您可以直接调用它:
myFunction()