在TextField中键入不会使标签浮动 [英] Typing in TextField doesn't make label float

查看:104
本文介绍了在TextField中键入不会使标签浮动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经制作了一个包含Material Design组件的表格.

I have made a form with Material Design components.

当自动填充填充输入时,我的TextField浮动标签浮动,但当用户键入输入时,浮动标签不浮动.

My TextField floating labels float when AutoFill fills the inputs, but not when a user types in them.

function fillFields() {
  $("#passwordTextField").val("test");
  $("#usernameTextField").val("test");
}

p.highlight-red-on-error {
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

div.mdc-text-field--invalid~p.highlight-red-on-error {
  color: #b00020;
}

<head>
  <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
  <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
  <link href="https://fonts.googleapis.com/css?family=Work+Sans" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  <link rel="stylesheet" href="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.css">
  <script src="https://unpkg.com/material-components-web@latest/dist/material-components-web.min.js"></script>
</head>

<body>

  <div>
    <div class="mdc-text-field">
      <input type="text" id="usernameTextField" name="username" class="mdc-text-field__input" pattern="[A-Za-z]*" required minlength=3 maxlength=32 data-mdc-auto-init="MDCTextField">
      <label for="usernameTextField" class="mdc-floating-label">Username</label>
      <div class="mdc-line-ripple"></div>
    </div>
    <p class="highlight-red-on-error">Username must be between 3 and 32 characters and contain only alphanumeric characters.</p>
  </div>


  <br>

  <!-- password field -->
  <div>
    <div class="mdc-text-field" data-mdc-auto-init="MDCTextField">
      <input type="password" id="passwordTextField" name="password" class="mdc-text-field__input" pattern="[A-Za-z!%^&*$?~`=+-_()]*" required minlength=8>
      <label for="passwordTextField" class="mdc-floating-label">Password</label>
      <div class="mdc-line-ripple"></div>
    </div>
    <p class="highlight-red-on-error">Password must be at least 6 characters. Some special charcaters are not allowed</p>
  </div>

  <p>
    Typing in the fields doesn't float the labels, but using autofill does.
  </p>
  <button onClick="fillFields()">Fill fields (doesn't float labels)</button>

  <script>
    window.mdc.autoInit();
    // from https://github.com/material-components/material-components-web/tree/master/packages/mdc-auto-init#using-as-part-of-material-components-web
  </script>
</body>

如您所见,既不能通过JavaScript编辑字段,也不能在字段中键入浮动标签.仅使用自动填充.另外,autoInit();似乎不起作用.

As you can see, neither editing the fields through JavaScript, nor typing in them floats the label. Only using auto-fill does. In addition, the autoInit(); doesn't seem to work.

推荐答案

我发现由于某些原因,使用autoInit();无效,因此我不得不手动初始化组件.

I found that using autoInit(); didn't work for some reason, so I had to manually initialise the components.

TextFields的示例(使用jQuery)是:

An example (using jQuery) for TextFields is:

$('.mdc-text-field').each(function (i, obj) {
    mdc.textField.MDCTextField.attachTo(obj);
});

上面的代码为所有类别为mdc-text-field

这篇关于在TextField中键入不会使标签浮动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆