我正在尝试访问外部javaScript中的用户输入数据,因此我可以使用它来运行主脚本。我的表格是
<form action="scripts/Main.js" method="post">
<label>
Enter Pin:
</label>
<input type="text" id="pin" name="pin" /> <br>
<label>
Enter Username:
</label>
<input type="text" id="name" name="user_name" />
<button type="submit">
Submit Info
</button>
</form>
我不知道从哪里开始以获取和使用JavaScript中的引脚和名称。