我正在尝试将一些参数传递给 iframe,它在所有浏览器中都可以正常工作,除了 IE。
对于我正在尝试做的事情,我找不到任何其他解决方案,但也许 IE 不接受要发送到 iframe 的参数?
这就是我所拥有的:
<iframe src="https://portal.maxistore.com.br/dologin.php?
email=<?php echo urlencode($user_info->user_login) ?>×tamp=<?php echo urlencode($timestamp) ?>&hash=<?php echo $hash ?>&goto=<?php echo urlencode($goto_invoices) ?>" name="iframeTarget" id="iframeTarget" width="100%" height="1200px"></iframe>
谢谢你。