我正在尝试创建一个 Windows 8 应用程序,并且我正在尝试阅读带有数字的文本框。我首先尝试使用 Microsoft 提供的“Hello World”示例来读取文本框,但我运行了一些测试,文本框没有被读取,它返回为“null”。
当我有:
var userName = document.getElementById("nameInput").value;
它适用于 HelloWorld 示例。
当我使用相同的代码,但在我的应用程序中进行了更改时:
var amount = document.getElementById("Amount").value;
该应用程序在上面的行中有错误。当我删除“.value”时,我得到“null”但没有错误。
如何使用 java 脚本读取 Microsoft Visual Studios for Windows 8 中文本框中的输入而不会出现错误?