0
,比如我有腳本jQuery的getScript加入返回undefined
$.getScript('http://jquery.com/files/social/js/jquery.tabs.js',function(data){console.log(data)})
在回報undefined
,但如果我用這種方式加載:
$.getScript('/social/js/jquery.tabs.js',function(data){console.log(data)})
它將返回我我的腳本的內容。可以修復嗎?