'value' => 'CHtml::link($data->name, $data->site_url, array("target"=>"_blank"))',CHtml::link()(以及 CHtml 类中的大多数其他 html 助手)的最后一个参数是 htmlOptions,它应该是一个关联数组,以 html 属性作为键及其值作为值:The last parameter to CHtml::link() (and most other html helpers in CHtml class), is htmlOptions, which is supposed to be an associative array with html attributes as keys and their values as values:array( "target"=>"_blank", "class"=>"my-css-class", // ... any other html attribute ..) 这篇关于Yii CGridView 超链接在新标签页中打开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-14 08:34