我可以使用谷歌电子表格中的数据填充html表单选择框吗?

时间:2015-11-05 08:46:33

标签: html forms google-sheets populate

我有一个带有单个选择框的简单html表单。目前它填充了2个硬编码的“选择”选项。

<html>
<form id="form1" name="form1">
  <select name="select" id="select">
    <option>option1</option>
    <option>option2</option>
    </select>
</form>    
</html>

是否可以使用已发布的Google电子表格中的列表填充选项

https://docs.google.com/spreadsheets/d/1O3hRZ_Fv9ldbJ8PJDicDHMp-EDIj_azhx9S4NHSUVyc/pubhtml?gid=0&single=true

我可以访问实际的电子表格。该列表将包含可变数量的项目,最多可达350个。

我知道一些javascript,因此理想情况下该语言最好,但如果需要另外一种,我可以研究一下。

感谢

1 个答案:

答案 0 :(得分:0)

Google's Spreadsheet API将是一个很好的起点。

但是,为了使用电子表格的内容填充HTML页面,您首先需要通过使用对正确API端点的AJAX请求或使用PHP库来检索内容(选中this例)。 至于进一步的帮助,你必须更多地描述你的设置,并展示你的一些PHP / JS代码......