jQuery.ajax({
url: url,
dataType: 'script',
success: callback_func,
async: true
});
示例:
jQuery.ajax({
url: 'https://cdn.bootcss.com/twitter-bootstrap/4.3.1/js/bootstrap.bundle.min.js',
dataType: 'script',
success: function() {
console.log('加载成功')
},
async: true
});
jQuery.ajax方法的官方文档 : https://api.jquery.com/jquery.ajax/。
另外,jQuery.getScript 方法也可以实现。