当我运行程序时,它会将"great things happened"
发送到azure表。
我想要做的是在用户界面上创建一个文本框,让用户输入要发送到azure表的值。
我创建了一个提交按钮,但不知道如何将按钮链接到文本框。
如何提交信息以将其发送到我的azure数据库?
var item = { text: "Great things happened!" };
client.getTable("Item").insert(item);
这就是我试过的
var inputBox = document.getElementById('user-input');
var item = { text: inputBox}; client.getTable("Item").insert(item);
使用HTML
<input id="user-input">
答案 0 :(得分:0)
在html页面上放置一个输入框,例如:
<input id="user-input">
然后通过执行以下操作来访问它:
var inputBox = document.getElementById('user-input')
现在,您可以使用以下方法查找文本框中的值:inputBox.value