0

画面の読み込み時に値が入力されるテキスト フィールドがあり、選択リストもあります。

私の質問は、ユーザーが選択リストで値を選択し、テキストフィールドと比較して、等しくない場合にアラートメッセージをトリガーするときです。

助けてください!

    JS:
function doType() 
{
    if (document.getElementById("Text1").value != document.getElementById("Select1").value) 
    alert(document.getElementById("Select1").value)
}

HTML:
<tr>
        <td align="right"><b>Select 1:</b></td>
        <td align=left>
           <select name="Select1" onChange="doType();"></select>
        </td>
        <td align="right"><b> Text 1:</b></td>
        <td align="left">
            <input name="Text1" type="text" size="10" maxlength="10">
        </td>
    </tr>
4

1 に答える 1

0

JS:

function doType()
    {
      if(document.getElementById("Select1").value === document.getElementById("Text1").value){
        alert("Equal");
       }

      else{
       alert(" Not Equal");
      }
    }

HTML:

<select id="Select1"onChange="doType();">
<option>Apple</option>
<option>Orange</option>
<option>Pineapple</option>
<option>Banana</option>
</select>

<input id="Text1" type="text" value="Apple"/>
于 2012-11-28T07:17:54.223 に答える