呼唤远方
该函数创建一个临时表单,然后使用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'}