var links = output.innerHTML = JSON.parse(xhr.responseText).upload.links.large_thumbnail;
function upload(file) { document.body.className = "uploading"; var fd = new FormData(); fd.append("image", file); fd.append("key", "xxxxxxxxxxxxxxxxxxxxxxx"); var xhr = new XMLHttpRequest(); var output = document.getElementById("output"); xhr.open("POST", "http://api.imgur.com/2/upload.json"); xhr.onload = function() { if(this.status==400){ document.getElementById("error").innerHTML = JSON.parse(xhr.responseText).error.message; } else { var links = output.innerHTML = JSON.parse(xhr.responseText).upload.links.large_thumbnail; document.body.className = "uploaded"; } } xhr.send(fd); }
Quote:JSON.parse(xhr.responseText).upload.links.large_thumbnail;
Quote:http
var links = JSON.parse(xhr.responseText).upload.links.large_thumbnail; output.innerHTML = links.replace("http","<br>http");
var links = JSON.parse(xhr.responseText).upload.links.large_thumbnail; output.innerHTML += links; output.innerHTML += '<br>';
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง