我有一个动态添加了 HTML 表单的 iframe。我需要父页面有一个按钮来提交此表单(到 iframe 中设置的页面),但随后也能够接收返回值。
我正在努力的部分是如何接收返回值。提交表单很好,但是让父页面接收返回值 - 就像使用 AJAX 请求一样 - 让我望而却步。
这是我想要实现的那种事情的一个例子:
<html>
<head>
etc...
<script type="text/javascript">
$(doument).ready(function() {
$("#myFormButton").click(function () {
// This is what doesn't exist, a callback with the data
// this is what I would like to acheive somehow...
$("#myForm").submit(function(data) {
// do stuff with the data
});
});
});
</script>
</head>
<body>
<iframe>
etc...
<form action="mypage.ashx">
various inputs...
</form>
etc...
</iframe>
</body>
</html>
非常感谢大家的帮助,
理查德·休斯