code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| [...]
<script type="javascript">
function chat(){
you = document.chat.you.value;
if ((you == "hallo")) {
document.chat.bot.value += "Hallo, hoe gaat het ermee?"
}
else{
document.chat.bot.value += "Ik snap je niet, probeer iets specifiecers te zijn"
}
</script>
[...]
<form name="chat" action="post">
<textarea name="bot" cols="65" rows="20"></textarea><br>
<input name="you" type="text" size="65">
<input type="button" onclick="chat()" value="send">
</form>
[...] |
Ik heb alles door gekeken, maar het doet het niet
Wat doe ik hier fout?