反馈BUG。。。input设置readonly="readonly"的时候 键盘会弹出来,且可输入。。
yourapis
- 发布:2019-03-01 15:55
- 更新:2021-11-13 17:48
- 阅读:4983
【报Bug】反馈BUG。。。input设置readonly="readonly"的时候 键盘会弹出来。。
分类:uni-app
希望uni-app form元素下面能支持fieldset, 方便简单粗暴地设置整个表单为只读, 参考Stackoverflow | how-can-i-make-an-entire-html-form-readonly
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<form>
<fieldset disabled="disabled">
<input type="text" name="something" placeholder="enter some text" />
<select>
<option value="0" selected="selected">select somethihng</option>
<option value="1">woot</option>
<option value="2">is</option>
<option value="3">this</option>
</select>
</fieldset>
</form>
</body>
</html>
以上代码在纯HTML文件中很方便地实现了全表单只读, 但遗憾的是在uni-app中无效 :)
使用场景: 用户查看历史记录中的表单内容(整个表单不可编辑/修改) ...
1***@qq.com
问题是disable会导致组件里的其他功能失效,我只是希望能正常使用input的其他功能,仅仅让人没法输入。
2021-10-19 08:44
batsing
但是 disable 会导致苹果端微信小程序输入框内的文字无法显示
2023-04-26 16:25