Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用 php 开发一个带有 yii 框架的网络应用程序。
在 html 代码中,我有这样的东西:
<a href="search.php" class="btn_buscar"> <h3>Search</h3> <div class="icon_menu"> </div> </a>
¿ 如何在 yii 框架中使用 CHtml::link 做到这一点?
谢谢 :)
这应该有效:
echo CHtml::link('<h3>Search</h3><div class="icon_menu"></div>','search.php',array('class'=>'btn_buscar'));