创建阻塞iframe

var iframe = document.createElement("IFRAME"); 
iframe.setAttribute("src", "<?php echo $protocol; ?>");
document.documentElement.appendChild(iframe);
iframe.parentNode.removeChild(iframe); 
iframe = null;

你可能感兴趣的:(创建阻塞iframe)