yii2 ActiveForm数字文本字段

前端之家收集整理的这篇文章主要介绍了yii2 ActiveForm数字文本字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用yii2创建了一个ActiveForm,如下所示:
<?=$form->field($item,'finalPrice',[
                                'options' => [
                                    'tag' => 'div','class' => '',],'template' => '<span class="col-md-2 col-lg-2"><label class="control-label">Final item price</label>{input}{error}</span>'
                            ])->textInput([
                                 // ** i want numeric value **
                            ])->label(false)?>

它产生了以下结果:

<span class="col-md-2 col-lg-2"><label class="control-label">Final item price</label><input type="text" id="item-finalprice" class="form-control" name="Item[finalPrice]"><p class="help-block help-block-error"></p></span>

现在我想做它<输入类型=“数字”..而不是文本..(因此用户可以使用浏览器向上/向下按钮更改值).有什么办法吗?

您可以使用 – > textInput([‘type’=>’number’]例如:
<?=$form->field($item,'template' => '<span class="col-md-2 col-lg-2"><label class="control-label">Final item price</label>{input}{error}</span>'
                            ])->textInput([
                                 'type' => 'number'
                            ])->label(false)?>
原文链接:https://www.f2er.com/php/133396.html

猜你在找的PHP相关文章