次のエラーが発生します
キャッチされないtypeerror:オブジェクトは関数ではありません
以下のコードで。
<html>
<head>
<title>Reverse</title>
</head>
<body>
<form name="rev1">
Enter the string : <input type="text" name="str">
<input type="button" value="click" onclick="rev1()" />
そして、これは私がエラーを見つけた場所です:
reverse of given string : <input type="text" name="res">
</form>
<script type="text/JavaScript">
function rev1(){
//var a=rev1.str.value;
//document.write("hello");
alert("hello");
}
</script>
</body>
</html>
何が原因で、どうすれば解決できますか?