<div class="form-group">
<label for="bit_app_policy_category_status">Please Insert the Code<span class="required">*</span></label>
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" />
</div>
我只想让该字段无法更改,而只能查看。
答案 0 :(得分:1)
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" readonly />
或
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" disabled />
答案 1 :(得分:1)
html为此具有两个属性。 readonly
和disabled
。当任何输入字段具有disabled
属性时,该值将不可编辑。并且该值也不会随表格一起传递。对于readonly
属性,值将不可编辑,但将与表单一起传递。因此请使用readonly
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" readonly />
答案 2 :(得分:0)
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" disabled />`
已禁用输入。
答案 3 :(得分:0)
使用可以使用只读
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" readonly />
答案 4 :(得分:0)
像这样使用只读:-
<input type="text" name="code" class="form-control" value="{{$category->code}}" placeholder="Enter the Code" readonly/>