作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有一个公开分享的google spreadsheet with price data .
有一种查询语言,我们可以从中提取特定数据,例如把这个 query进入浏览器地址字段。这样我们就得到了第一个项目的价格。
有哪些简单的方法可以将它插入到特定网页的特定位置?
真的只有 javascript/jquery 才能做到这一点吗?
最佳答案
使用桌面库 https://github.com/jsoma/tabletop你可以这样做:
<script type="text/javascript">
window.onload = function() { init() };
var public_spreadsheet_url = 'https://docs.google.com/spreadsheet/pub?hl=en_US&hl=en_US&key=0AmYzu_s7QHsmdDNZUzRlYldnWTZCLXdrMXlYQzVxSFE&output=html';
function init() {
Tabletop.init( { key: public_spreadsheet_url,
callback: showInfo,
simpleSheet: true } )
}
function showInfo(data, tabletop) {
alert("Successfully processed!")
console.log(data);
}
</script>
关于javascript - 如何从谷歌电子表格中提取数据到网站?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32273362/
我是一名优秀的程序员,十分优秀!