1
我有下面這個qQuery功能,它將幾個對象設置爲null。如何在視圖模型文件中定義的視圖文件中調用一個函數 - jQuery
$.fn.myfunction = function() {
var newAppointmentDetails = {
AppointmentStatusTypeId: null,
AppointmentStatusId: null,
AppointmentType: null,
CallDate: null,
}; }`
我從我的視圖文件(單獨的文件)調用這個函數'myfunction',我得到對象未定義的錯誤。
fn.myfunction();
如何調用此函數?