我知道如何在 HTML 文件中包含 CDN。
<!DOCTYPE html>
<html>
<head>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
</body>
</html>
但我想做的是:
我想在我的 javascript 文件中包含像 jquery 这样的 CDN。
可能是我想做的事情是不可能的。
实际上,我想从我的 javascript 文件中调用BootstrapDialog.Confirm 。
所以,我想在 js 文件中包含 BootstrapDialog 所需的 CDN。
然后我可以调用BootstrapDialog.Confirm。
如果我的问题不合理,请原谅我,因为我是初学者。