如果之前已经询问过,请检查它是否相同。
我正在使用Materialise css,我想知道如何使用多种类型,即。
<input id="login_password" type="search|password" placeholder="Password">
当使用type =“search”时,它给了我一个很棒的输入设计,现在我想在其他输入类型中使用它。
我尝试了两种类型,即
<input id="login_password" type="search" type="password" placeholder="Password">
现在它的类似=“密码”从未存在
答案 0 :(得分:0)
<html>
<body>
<form action="/action_page.php">
Select images: <input type="file" type="submit" name="input" >
<br>
<br>
<input type="submit">
</form>
</body>
</html>
&#13;
看到这里我给出了单个输入的分配类型..如果你这样做,它将只考虑第一个类型。不会考虑第二个..所以我想说的是你可以&#t; t为单个输入标记分配多种类型。