我想要整个字符串http://mywebsite.com?u=http://othersite.com?thisis立即发送。如果我把它放在像 bit.ly 这样的 URL 缩短器中,它就可以工作,但如果我把它保持原样,它就会坏掉。
<script>
function go(){
window.frames[0].document.body.innerHTML='<form target="_parent" action="http://mywebsite.com?u=http://othersite.com?thisis"></form>';
window.frames[0].document.forms[0].submit()
}
</script>