当我将BootstrapInput更改为此时:
def concat_short_words(s):
i = 0
word = s.split()
result = ""
while i < len(word):
if len(word[i]) <= 4:
result = result + word[i]
i = i+1
return(result)
仅在选择输入字段时显示占位符文本。
有什么主意如何使占位符始终可见?
这是我从Material-UI使用的示例。
<BootstrapInput
id="age-customized-input"
placeholder="Search Title"
/>
答案 0 :(得分:0)
它的backgroundColor隐藏了标签。如果您将其注释掉,则会显示标签。下面的代码沙箱。
//backgroundColor: theme.palette.background.paper,