点击SUBMIT按钮POST数据后不自动跳转

Published: Tags: HTML

使用一个隐藏的IFRAME即可,代码如下:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title></title>
</head>

<body>
  <div style="margin:0 auto; width:200px;">
    <form name="nojumpform" action="http://www.baidu.com" method="post" target="noJumpIFrame">
      <input type="text" name="id" value="post this data" />
	  <input type="submit" value="Submit" name="Submit" />
    </form>
	<iframe style="display:none" name="noJumpIFrame" />
  </div>
</body>
</html>

PS:还可以使用 HttpWebRequest 向网站进行提交,具体的方法可以谷歌搜索。