如何通过JavaScript将文本框中的网址加载到HTML文件中的iframe中?

最佳答案

var oIFrame = document.getElementById("id_of_iframe");
oIFrame.src = document.getElementById("id_of_textbox").value;

关于javascript - 将网址从文本框中加载到iframe中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/907547/

10-10 15:51