HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLDOM入力月名プロパティ


HTML DOM入力月名プロパティは、HTMLドキュメントのtype =” month”の入力フィールドのname属性の値を返し、変更します。

構文

以下は構文です-

1.名前を返す

object.name

2.名前の変更

object.name = “text”

HTMLDOM入力月名プロパティの例を見てみましょう-

<!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 name property Example</h1>
<input type="month" class="monthInput" value="2019-02" name="I'm Month input
field!! ">
<p>Hi, Do you want to see my name?</p>
<p>Then click on the button</p>
<button onclick="showName()" class="btn">Show Name</button>
<div class="show"></div>
<script>
   function showName() {
      var monthInput = document.querySelector(".monthInput");
      var showMsg = document.querySelector(".show");
      showMsg.innerHTML=monthInput.name;
   }
</script>
</body>
</html>

出力

これにより、次の出力が生成されます-

HTMLDOM入力月名プロパティ

名前を表示」をクリックします 」ボタンをクリックすると、月の入力フィールドの名前属性の値が表示されます。

HTMLDOM入力月名プロパティ


  1. HTMLDOM入力時間名プロパティ

    HTML DOM入力時間nameプロパティは、入力時間のname属性の値を表示する文字列を返します。ユーザーはそれを新しい文字列に設定することもできます。 構文 以下は構文です- 文字列値を返す inputTimeObject.name 名前の設定 文字列値の属性 inputTimeObject.name = ‘String’ 例 入力時刻名の例を見てみましょう プロパティ- <!DOCTYPE html> <html> <head> <title>Input Time name</title> &

  2. HTMLDOM入力URL名プロパティ

    HTML DOM入力URLnameプロパティは、入力URLのnameプロパティの値である文字列を返します。ユーザーはそれを新しい文字列に設定することもできます。 構文 以下は構文です- 文字列値を返す inputURLObject.name 名前の設定 文字列値の属性 inputURLObject.name = ‘String’ 例 入力URL名の例を見てみましょう プロパティ- <!DOCTYPE html> <html> <head> <title>Input URL name</title>