1

Create json.js

This commit is contained in:
Evan Pratten 2017-09-10 10:49:59 -04:00 committed by GitHub
parent e73b3b75a0
commit 42fe956843

25
community/json.js Normal file
View File

@ -0,0 +1,25 @@
var txt = '';
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function(){
if(xmlhttp.status == 200 && xmlhttp.readyState == 4){
txt = xmlhttp.responseText;
}
};
xmlhttp.open("GET","./content/test.json",false);
xmlhttp.send();
console.log(txt)
var jsona = JSON.parse(txt);
alert(jsona.src);
if (jsona.type == "img") {
var contenttype = "img"
} else {
var contenttype = "iframe"
}
var options = ' src = "';
var options = options.concat(json.src);
var options = options.concat('"');
var content = document.createElement(contenttype,[options]);
document.body.appendChild(content)