0
我在http://www.mysite.local/js/site/functions.js
中有這個代碼:jQuery getScript。如何在加載後執行函數
$.getScript('/js/common/jquery.jsonrpc.js',
$.jsonRPC.setup({
endPoint: '/api/accounts',
namespace: 'mynamespace'
})
);
它應該在加載時運行jsonRPC插件的setup
方法。但我收到錯誤:
$.jsonRPC is undefined
http://www.mysite.local/js/site/functions.js
有什麼問題,我該如何解決?