ฉันพยายามทดสอบว่ามีองค์ประกอบ DOM อยู่หรือไม่และหากมีอยู่ให้ลบออกและหากไม่มีอยู่ให้สร้างขึ้นมา
var duskdawnkey = localStorage["duskdawnkey"];
var iframe = document.createElement("iframe");
var whereto = document.getElementById("debug");
var frameid = document.getElementById("injected_frame");
iframe.setAttribute("id", "injected_frame");
iframe.setAttribute("src", 'http://google.com');
iframe.setAttribute("width", "100%");
iframe.setAttribute("height", "400");
if (frameid) // check and see if iframe is already on page
{ //yes? Remove iframe
iframe.removeChild(frameid.childNodes[0]);
} else // no? Inject iframe
{
whereto.appendChild(iframe);
// add the newly created element and it's content into the DOM
my_div = document.getElementById("debug");
document.body.insertBefore(iframe, my_div);
}
การตรวจสอบว่ามีอยู่หรือไม่การสร้างองค์ประกอบใช้งานได้ แต่การลบองค์ประกอบไม่ได้ โดยพื้นฐานแล้วโค้ดทั้งหมดนี้จะแทรก iframe ลงในหน้าเว็บโดยคลิกที่ปุ่ม สิ่งที่ฉันต้องการจะเกิดขึ้นคือถ้า iframe อยู่ที่นั่นแล้วเพื่อลบมัน แต่ด้วยเหตุผลบางอย่างฉันล้มเหลว