我正在尝试为 yii 上的 cjuidialog 赋予一种风格。我已经把这个放到 cjuidialog 中了:
<link rel="stylesheet" href="/css/survey/style.php">
问题是这种风格会影响整个页面。我怎样才能只给对话框一个样式?
<?php $this->beginWidget('zii.widgets.jui.CJuiDialog', array(
'id'=>'previewdialog',
// additional javascript options for the dialog plugin
'options'=>array(
'title'=>'Template Preview',
'autoOpen'=>false,
'draggable'=>true,
'modal'=>false,
'width'=>900,
)
));
echo 'Preview';
$this->endWidget('zii.widgets.jui.CJuiDialog');?>
谢谢,