使用JavaScript创建iframe
HTML元素的最佳做法是什么?
var iframe = document.createElement("iframe");
iframe.setAttribute("sandbox", "")
iframe.setAttribute("src", url);
我在开发Firefox插件时遇到了问题,但使用方法与开发网页完全相同。我不使用jQuery。
答案 0 :(得分:2)
您可以尝试this: -
<script type="text/javascript">
function abc() {
iframe = document.createElement("IFRAME");
iframe.setAttribute("src", "http://example.com/");
iframe.style.width = "640px";
iframe.style.height = "480px";
document.body.appendChild(iframe);
}
</script>