我试过这个,
var url = 'mubiao.jsp';
var data = '此处为大数据';
var html = '<form action="'+url+'" method="post" target="_self" id="postData_form">'+
'<input id="wor_iteId" name="wor_iteId" type="hidden" value="'+data+'"/>'+
'</form>';
document.getElementById('ifr_1').contentWindow.document.wirte(html);
document.getElementById('ifr_1').contentWindow.document.getElementById('postData_form').submit();
貌似不行,还有其他的办法吗、?
你可以不这样传值
例如你传的值是 aaa
那么在打开iframe之前
windows.top.aaa = value;
然后在iframe里面 var aaa =windows.top.aaa;
缺点 好像不能跨域 =。=