关于thickbox的url

thickbox是根据“?”后面的东西,来解析的。

请问强哥,我怎么生成这样的url呀?如:


http://www.app.com/controller/action/otherParams.html?height=300&width=300&inlineId=myOnPageContent

我的url已经配置为




'urlManager'=>array(

			'urlFormat'=>'path',

			'showScriptName' => false,

			'urlSuffix' => '.html',

		),



我暂时用以下代替




<?php echo Html::thickboxLink('添加', array('controller/action', '#' => '?height=100'))?>



只是多了个# 号

array(‘controller/action’, ‘height’=>300, ‘width’=>300’, …)

另外,你需要一条url规则,不然GET参数都放到问号之前了:

‘controller/action/otherParams’=>‘controller/action’

知道了,谢谢!^_^