@cnblogs/load-script-css
v1.6.0
Published
Simply load javascript and css via html script and link element in browser
Downloads
72
Readme
Load Script Css
Load javascript and css via script and link element dynamically in browser
Usage
import { loadScript } from '@cnblogs-gitlab/load-script-css';
async function load() {
try {
await loadScript({
src: 'https://code.jquery.com/jquery-3.6.0.min.js',
id: 'jqueryScript',
});
await loadCss({
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css',
id: 'jqueryScript',
});
} catch (ex) {
console.error(ex);
}
}
Directly use in html
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<title>Demo</title>
<script src="https://<your-cdn>/load-script-css.js"
type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
window.gloader.loadScript({ src: 'https://code.jquery.com/jquery-3.6.0.min.js', id: 'jqueryScript' })
.then(function () { console.log('Script loaded') }, function (err) { console.error('Failed to load script', err) })
window.gloader.loadCss({
href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css',
id: 'jqueryScript'
}).then(function () { console.log('Style loaded') }, function (err) { console.error('Failed to load style', err) })
</script>
</body>
</html>