1

Update json.js

This commit is contained in:
Evan Pratten 2017-09-10 11:08:42 -04:00 committed by GitHub
parent 8352bc7bc5
commit df5f696c82

View File

@ -8,10 +8,10 @@ xmlhttp.onreadystatechange = function(){
xmlhttp.open("GET","./content/test.json",false);
xmlhttp.send();
console.log(txt)
var jsona = JSON.parse(txt);
alert(jsona.src);
var json = JSON.parse(txt);
alert(json.src);
if (jsona.type == "img") {
if (json.type == "img") {
var contenttype = "img"
} else {
var contenttype = "iframe"