隐藏iframe可以使用javascript提交也可以直接提交比如
<html>
<head>
<title>提交到隐藏iframe</title>
<script language="javascript">
function subForm_Click()
{
document.form1.subForm.disabled=false;
document.form1.submit();//提交表单
}
</script>
</head>
<body>
<form name="form1" acrion="subdata.asp" target="frame1" >
<input type="submit" name="submit" value="直接提交">
<input type="button" name="subForm" onClick="subForm_Click();" value="脚本提交">
</form>
<iframe name="frame1" style="display:none;" src="" ></iframe>
</body>
</html>