Create json.js
This commit is contained in:
parent
e73b3b75a0
commit
42fe956843
25
community/json.js
Normal file
25
community/json.js
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user