在yii应用程序内容中加载外部URL

时间:2014-12-31 16:08:59

标签: php yii

有没有办法在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 加载内容。

请帮帮我......

1 个答案:

答案 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");