如何将数据发布到iframe?
答案 0 :(得分:391)
取决于“发布数据”的含义。您可以在target=""
标记上使用HTML <form />
属性,因此它可以像以下一样简单:
<form action="do_stuff.aspx" method="post" target="my_iframe">
<input type="submit" value="Do Stuff!" />
</form>
<!-- when the form is submitted, the server response will appear in this iframe -->
<iframe name="my_iframe" src="not_submitted_yet.aspx"></iframe>
如果不是这样,或者您正在处理更复杂的事情,请编辑您的问题以包含更多详细信息。
Internet Explorer存在一个已知错误,只有当您使用Javascript动态创建iframe等时才会出现(有work-around here),但如果您使用的是普通的HTML标记,那么您就是精细。目标属性和框架名称不是一些聪明的忍者黑客;虽然它在HTML 4 Strict或XHTML 1 Strict中被弃用(因此不会验证),但它自3.2起就成为了HTML的一部分,它正式成为HTML5的一部分,并且它自Netscape 3起几乎适用于所有浏览器。
我已将此行为验证为使用XHTML 1 Strict,XHTML 1 Transitional,HTML 4 Strict以及未指定DOCTYPE的“quirks模式”,并且它适用于使用Internet Explorer 7.0.5730.13的所有情况。我的测试用例包含两个文件,在IIS 6上使用经典ASP;它们在这里完整复制,因此您可以自己验证这种行为。
<强>的default.asp 强>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Form Iframe Demo</title>
</head>
<body>
<form action="do_stuff.asp" method="post" target="my_frame">
<input type="text" name="someText" value="Some Text" />
<input type="submit" />
</form>
<iframe name="my_frame" src="do_stuff.asp">
</iframe>
</body>
</html>
<强> do_stuff.asp 强>
<%@Language="JScript"%><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Form Iframe Demo</title>
</head>
<body>
<% if (Request.Form.Count) { %>
You typed: <%=Request.Form("someText").Item%>
<% } else { %>
(not submitted)
<% } %>
</body>
</html>
我很想知道任何浏览器没有正确运行这些示例。
答案 1 :(得分:23)
iframe用于在html页面中嵌入另一个文档。
如果要将表单提交到表单页面中的iframe,那么可以使用标记的target属性轻松实现该表单。
将表单的target属性设置为iframe标记的名称。
<form action="action" method="post" target="output_frame">
<!-- input elements here -->
</form>
<iframe name="output_frame" src="" id="output_frame" width="XX" height="YY">
</iframe>
使用高级iframe目标
此属性也可用于产生类似ajax的体验,特别是在文件上传等情况下,在这种情况下,必须提交表单,以便上传文件
可以将iframe设置为0的宽度和高度,并且可以在将目标设置为iframe的情况下提交表单,并在提交表单之前打开加载对话框。所以,它控制了一个ajax控件,因为控件仍然保留在输入格式jsp上,打开加载对话框。
〔实施例
<script>
$( "#uploadDialog" ).dialog({ autoOpen: false, modal: true, closeOnEscape: false,
open: function(event, ui) { jQuery('.ui-dialog-titlebar-close').hide(); } });
function startUpload()
{
$("#uploadDialog").dialog("open");
}
function stopUpload()
{
$("#uploadDialog").dialog("close");
}
</script>
<div id="uploadDialog" title="Please Wait!!!">
<center>
<img src="/imagePath/loading.gif" width="100" height="100"/>
<br/>
Loading Details...
</center>
</div>
<FORM ENCTYPE="multipart/form-data" ACTION="Action" METHOD="POST" target="upload_target" onsubmit="startUpload()">
<!-- input file elements here-->
</FORM>
<iframe id="upload_target" name="upload_target" src="#" style="width:0;height:0;border:0px solid #fff;" onload="stopUpload()">
</iframe>
答案 2 :(得分:2)
此函数创建一个临时表单,然后使用jQuery发送数据:
function postToIframe(data,url,target){
$('body').append('<form action="'+url+'" method="post" target="'+target+'" id="postToIframe"></form>');
$.each(data,function(n,v){
$('#postToIframe').append('<input type="hidden" name="'+n+'" value="'+v+'" />');
});
$('#postToIframe').submit().remove();
}
target是目标iFrame的'name'attr,data是JS对象:
data={last_name:'Smith',first_name:'John'}
答案 3 :(得分:0)
如果要更改iframe中的输入,然后从该iframe提交表单,请执行此操作
...
var el = document.getElementById('targetFrame');
var doc, frame_win = getIframeWindow(el); // getIframeWindow is defined below
if (frame_win) {
doc = (window.contentDocument || window.document);
}
if (doc) {
doc.forms[0].someInputName.value = someValue;
...
doc.forms[0].submit();
}
...
通常,只有在iframe中的页面来自相同的来源时,您才能执行此操作,但是您可以在调试模式下启动Chrome,以忽略相同的来源策略并在任何页面上对其进行测试。
function getIframeWindow(iframe_object) {
var doc;
if (iframe_object.contentWindow) {
return iframe_object.contentWindow;
}
if (iframe_object.window) {
return iframe_object.window;
}
if (!doc && iframe_object.contentDocument) {
doc = iframe_object.contentDocument;
}
if (!doc && iframe_object.document) {
doc = iframe_object.document;
}
if (doc && doc.defaultView) {
return doc.defaultView;
}
if (doc && doc.parentWindow) {
return doc.parentWindow;
}
return undefined;
}