为什么document.bform.submit();这样的提交出来的页面,会被Google的工具条拦截掉代码如下:
你们下载个google的工具条,他主要是拦弹窗的,但是我这不是弹窗,为什么也会被拦掉,但是我的代码要求必须是这样,这样我好通过别人点击一下链接,我能够为更多的文件传递参数.
这是Google的工具条:
http://toolbar.google.com/T4/intl/zh-CN/?promo=abt-tb-cn<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head><body>
<script>
function go(id){
document.bform.id.value=id;
document.bform.action="http://127.0.0.1/go100.html";
document.bform.submit();
}
</script>
<form action="" name="bform" method="post" target=myframeb>
<input type="hidden" name="id" id=site>
</form>
<iframe src="" name=myframeb width=0 height=0></iframe>
<a id="dddd"   href="http://www.sina.com.cn" onClick='go(id)' target="_blank">新浪网</a></body>
</html>