テキストボックスからテキストを取得しようとしています。テキストボックスからの入力値の取得
フォームにはない2つの入力テキストボックスがあり、value
を取得して変数に格納しようとしています。
このコードは、ポップアップする警告ボックスにundefined
を返します。私は、アラート機能のパラメータとしてuserName.value
でそれを実行すると
<script>
var userPass = document.getElementById('pass');
var userName = document.getElementById('fName');
function submit(){
alert(userPass.value);
}
</script>
が、それは仕事とあなたがボックスに入力し、これまで何を表示します。ここで
はhtmlです:
<table id="login">
<tr>
<td><label>User Name</label></td>
</tr>
<tr>
<td colspan="2"><input class="textBox" id="fName" type="text" maxlength="30" required/></td>
</tr>
<tr>
<td id="pass"><label>Password</label></td>
<tr>
<td colspan="2"><input class="textBox" id="pass" type="text" maxlength="30" required/></td>
</tr>
<tr>
<td><input type="button" class="loginButtons" value="Login" onclick="submit();"/>   
<input type="button" class="loginButtons" value="Cancel"/></td>
</table>
– Beanno1116
ご質問はありますか? – blake305
関連のHTMLを追加 –