body = document.querySelector("body > iframe").contentDocument.body;html = document.querySelector("body > iframe").contentDocument.documentElement; document.querySelector("body > iframe").style.width = Math.max( body.scrollWidth, body.offsetWidth, html.clientWidth, html.scrollWidth, html.offsetWidth ) + "px";document.querySelector("body > iframe").style.height = Math.max( body.scrollHeight, body..
/{pattern}/.test({string})
function _ajax(url, data, func, sync, type) {var xmlhttp = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");xmlhttp.onreadystatechange = function() { if (xmlhttp.readyState == 4) func(xmlhttp.responseText, xmlhttp.status == 200); };xmlhttp.open(type ? type : "POST", url, !sync ? true : false);xmlhttp.setRequestHeader("Content-type", "application/x-www-form-ur..