Trimit cu ajax() catre un fisier
Cod: Selectaţi tot
my_ajax1("updateprogramare.php",data_json,"post");
Cod: Selectaţi tot
<?php
echo ' <script> ';
echo' alert("Rezervare reusita ! Va multumim.")';
echo ' </script>';
?>
Multumesc.
Cod: Selectaţi tot
my_ajax1("updateprogramare.php",data_json,"post");
Cod: Selectaţi tot
<?php
echo ' <script> ';
echo' alert("Rezervare reusita ! Va multumim.")';
echo ' </script>';
?>
Cod: Selectaţi tot
<script>
// this function create an Array that contains the JS code of every <script> tag in parameter
// then apply the eval() to execute the code in every script collected
function parseScript(strcode) {
// function from: https://coursesweb.net/ajax/
var scripts = new Array(); // Array which will store the script's code
// Strip out tags
while(strcode.indexOf("<script") > -1 || strcode.indexOf("</script") > -1) {
var s = strcode.indexOf("<script");
var s_e = strcode.indexOf(">", s);
var e = strcode.indexOf("</script", s);
var e_e = strcode.indexOf(">", e);
// Add to scripts array
scripts.push(strcode.substring(s_e+1, e));
// Strip from strcode
strcode = strcode.substring(0, s) + strcode.substring(e_e+1);
}
// Loop through every script collected and eval it
for(var i=0; i<scripts.length; i++) {
try {
eval(scripts[i]);
}
catch(ex) {
// do what you want here when a script fails
}
}
}
// string with javascript scripts
var str_script = '<scrip'+'t>alert("Script 1");</scri'+'pt>\
<scri'+'pt>var str2 = "Script 2"; alert(str2);</scri'+'pt>';
// parse and executes the scripts from str_script
parseScript(str_script);
</script>