你怎么发到IFRAME的?如何将数据发布到iframe?
3 回答
呼唤远方
TA贡献1856条经验 获得超11个赞
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(); }
data={last_name:'Smith',first_name:'John'}
添加回答
举报
0/150
提交
取消