联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
百度编辑器框里如何加上默认字这里添加 'value' => ' 默认值' 好像没效果
类型:迅睿CMS 更新时间:2020-05-02 09:08:04

http://demo4.xunruicms.com/show-46.html

问下 回帖的百度编辑器框里如何加上默认字

捕获.PNG

<?php $s= dr_field_form([

                          'name' => '内容',

                'ismain' => 1,

                'fieldtype' => 'Ueditor',

                'fieldname' => 'content',

                'setting' => array('option' => array( 'mobile_mini'=>'1', 'mode' => 3, 'height' => 220, 'width' => '100%', 'tool' => '\'insertimage\', \'attachment\', \'image\''), 'validate' => array('xss' => 1))

                ]);

                echo $s;

                ?>

这里添加 'value' => ' 默认值' 好像没效果 完全不会弄 请指点

回帖
  • #1楼    迅睿框架创始人
    2020-05-02 09:08:04
    Chrome 0
    <?php $s= dr_field_form([
                              'name' => '内容',
                    'ismain' => 1,
                    'fieldtype' => 'Ueditor',
                    'fieldname' => 'content',
                    'setting' => array('option' => array( 'mobile_mini'=>'1', 'mode' => 3, 'height' => 220, 'width' => '100%', 'tool' => '\'insertimage\', \'attachment\', \'image\''), 'validate' => array('xss' => 1))
                    ], '默认内容');
                    echo $s;
                    ?>