如何使输入文本字段为只读

时间:2019-11-07 07:03:10

标签: html laravel laravel-5

<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>

我只想让该字段无法更改,而只能查看。

Expected output

I WISH THE CODE COLUMN CAN VIEW ONLY BUT NOT EDIT

5 个答案:

答案 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为此具有两个属性。 readonlydisabled。当任何输入字段具有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/>