当我自己训练JavaScript时,我编写了一个函数来获取表单用户名window.alert
,但是我收到了未定义的有价值的警报消息,我不知道我在哪里做错了。
<head>
<script>
var deger = document.forms["form1"]["username"].value;
function tikla() {
window.alert(deger);
}
</script>
</head>
<body>
<form name="form1" method="post" action="gonder.php">
<input type="text" name="username" /><br>
<button onclick="tikla()">Tikla</button>
</form>
</body>