Chargement et Déchargement dynamique des scripts JS pour une utilisation Ajax
Un petit code à tester...
// Permet de charger un script JS à la volée.
function LoadScript(scrPath, scrName) {
var oScript = document.createElement('script');
oScript.src = scrPath;
oScript.setAttribute('name',scrName); document.body.appendChild(oScript);
}
// Décharge le script JS de la page.
function FreeScript(scrName) {
document.body.removeChild(document.getElementById(scrName));
}
function LoadScript(scrPath, scrName) {
var oScript = document.createElement('script');
oScript.src = scrPath;
oScript.setAttribute('name',scrName); document.body.appendChild(oScript);
}
// Décharge le script JS de la page.
function FreeScript(scrName) {
document.body.removeChild(document.getElementById(scrName));
}
Commentaires
Enregistrer un commentaire