Flask 输入字段不允许在 Safari 中输入文本

时间:2021-03-29 21:21:12

标签: css safari flask-wtforms

我正在使用 Flask 表单来创建表单页面。输入字段适用于 Chrome 和 Edge。但不能在 safari 中工作(无法点击输入文本)。

以下是检查器 HTML:

enter image description here

这是CSS:

enter image description here

我一直在努力让它发挥作用,我试过: Cannot write into input field on safariInput field iOS Safari bug — Can't type in any text

两者都无济于事。有什么可能出问题的想法吗?

这是我用来创建表单的代码示例:

thing_name = StringField(
        'Name',
        description='Name of the thing',
        validators=[
            InputRequired('Please specify the name of the thing'),
        ])

1 个答案:

答案 0 :(得分:0)

问题在于表单名称。由于某种原因,它不能命名为 title,更改名称解决了问题。