有没有办法在iframe中加载http://www.google.com之类的外部网址, 喜欢
$this->beginWidget('zii.widgets.jui.CJuiDialog', array(
'id'=>'cru-dialog',
'options'=>array(
'title'=>'Detail view',
'autoOpen'=>false,
'modal'=>false,
'width'=>'95%',
'height'=>800,
),
));
?>
<iframe id="cru-frame" width="80%" height="100%"></iframe>
<?php
$this->endWidget();
?>
或在应用程序内容中加载我们所需URL的任何其他方式。 就像我们点击一样 mail 或 MIS 或 HR 链接 从头部登录用户名和密码,然后 www.mail.myapp.com/?u=r&p=r 或 www.mis.myapp.com?u=r&p=r 或 www.hr.myapp.com?u=r&p=r 加载内容。
请帮帮我......
答案 0 :(得分:0)
部分视图:
<?php $this->beginClip('externalUrl'); ?>
<div class="cropDiv">
<iframe></iframe>
</div>
<?php $this->endClip();
echo $this->clips['externalUrl']; ?>
现在,从ajax中获取局部视图的内容并将其显示在对话框中。 例如:
$("#cru-dialog").html(response).dialog("open");