如何在 javascript 中包含 CDN?
How to include CDN in javascript?
我知道如何在 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.
如果我的问题不合理,请见谅,我是初学者
您可以在 Javascript:
var jQueryScript = document.createElement('script');
jQueryScript.setAttribute('src','https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js');
document.head.appendChild(jQueryScript);
使用 document.write 你可以包含 cdn
document.write(
unescape("%3Cscript src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js' type='text/javascript'%3E%3C/script%3E")
);
我知道如何在 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.
如果我的问题不合理,请见谅,我是初学者
您可以在 Javascript:
var jQueryScript = document.createElement('script');
jQueryScript.setAttribute('src','https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js');
document.head.appendChild(jQueryScript);
使用 document.write 你可以包含 cdn
document.write(
unescape("%3Cscript src='https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js' type='text/javascript'%3E%3C/script%3E")
);