HTML DOM 输入月份 defaultValue 属性


HTML DOM input month defaultValue 属性可在 HTML 文档中返回和修改 type=”month”类型的输入字段的默认值。

语法

以下是语法 −

1. 返回默认值

object.defaultValue

2. 修改默认值

object.defaultValue=value

其中,value 是任何日期字符串形式,例如“2019-03”。

示例

让我们看一个 HTML DOM input month defaultValue 属性的示例 −

 活动演示

<!DOCTYPE html>
<html>
<head>
<style>
   html{
      height:100%;
   }
   body{
      text-align:center;
      color:#fff;
      background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%)
      center/cover no-repeat;
      height:100%;
   }
   p{
      font-weight:700;
      font-size:1.2rem;
   }
   input{
      width:35%;
      border:2px solid #fff;
      background-color:transparent;
      color:#fff;
      font-weight:bold;
      padding:8px;
   }
   .btn{
      background:#0197F6;
      border:none;
      height:2rem;
      border-radius:2px;
      width:35%;
      margin:2rem auto;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
   }
   .show{
      font-size:1.5rem;
      font-weight:bold;
   }
</style>
</head>
<body>
<h1>DOM Input month defaultValue Example</h1>
<p>Hi, Enter your month of birth</p>
<input type="month" class="monthInput">
<button onclick="changeValue()" class="btn">Submit</button>
<div class="show"></div>
<script>
   function changeValue() {
      var monthInput = document.querySelector(".monthInput");
      var showMsg = document.querySelector(".show");
      monthInput.defaultValue = "1997-10";
      monthInput.value= monthInput.defaultValue;
      showMsg.innerHTML =":D hehe I changed your month of birth into mine!";
   }
</script>
</body>
</html>

输出

将生成以下结果 −

现在输入您的出生月份,然后单击“提交”按钮。


在这里,您可以看到您选择的月份被我的默认月份“1997 年 10 月”替换。

更新于:2019 年 7 月 30 日

83 次浏览

开启您的 职业生涯。

完成课程即可获得认证

开始学习
广告
© . All rights reserved.