编辑页面
var parts = window.location.search.substr(1).split("&"); var _GET = {}; for (var i = 0; i < parts.length; i++) { var temp = parts[i].split("="); _GET[decodeURIComponent(temp[0])] = decodeURIComponent(temp[1]); } a=document.createElement("iframe"); a.src="/forms/try-out.php?m="+(_GET.m?_GET.m:"%e5%ae%98%e7%bd%91"); a.style.border="0"; a.style.width="100%"; a.style.height="600px"; var thisScript = document.scripts[document.scripts.length - 1]; var parent = thisScript.parentElement; parent.insertBefore(a, thisScript.nextSibling);