react 中的input 只读属性

正确的两种写法:

一、HTML中

                             this.getInput("1")}
                            value={startDate}
                            readOnly
                            />

二、CSS中 

 .sendpayApproval .table .table-row2 .time .lg-input-o[readonly] {
     cursor: pointer;
 }

错误写法:

readonly

readonly=”readonly”

你可能感兴趣的:(前端)