本文實例講述了Yii框架彈出框功能。分享給大家供大家參考,具體如下:
<?php $this->beginWidget('zii.widgets.jui.CJuiDialog', array( 'id'=>'userinfo_edit',//彈窗ID // additional javascript options for the dialog plugin 'options'=>array(//傳遞給JUI插件的參數 'title'=>'修改個人信息', 'autoOpen'=>false,//是否自動打開 'width'=>'auto',//寬度 'height'=>'auto',//高度 'buttons'=>array( '關閉'=>'js:function(){ $(this).dialog("close");}', '提交'=>'js:function(){ health_edit();}' ), ), )); ?> <table> <tbody> <input type="hidden" name="GrouphealthForm[student_id]" id="GrouphealthForm_student_id" value="<?php echo $uid; ?>" /> <tr><td class="arighta"><label>昵稱</label></td><td><input type="text" name="realname" value="<?php echo $userinfo['realname'];?>" /></td></tr> <tr><td class="arighta">手機</td><td><input type="text" name="mobile" value="<?php echo $userinfo['mobile'];?>" /></td></tr> <tr><td class="arighta">郵箱</td><td><input type="text" name="email" value="<?php echo $userinfo['email'];?>" /></td></tr> </tbody> </table> <?php $this->endWidget('zii.widgets.jui.CJuiDialog'); ?>
更多關於Yii相關內容感興趣的讀者可查看本站專題:《Yii框架入門及常用技巧總結》、《php優秀開發框架總結》、《smarty模板入門基礎教程》、《php面向對象程序設計入門教程》、《php字符串(string)用法總結》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家基於Yii框架的PHP程序設計有所幫助。