Answers:
转到“文件”>“发布到Web”,然后在“获取到已发布数据的链接”下,选择“网页”,然后选择要发布的工作表。然后选择您要显示的单元格。然后复制生成的链接。
您可能需要使用共享选项(即,具有链接的任何人都可以编辑)。
是的,谷歌没有实现这一点太糟糕了。我在这里为此目的放了一些JavaScript书签。单击一次将插入CSS样式以隐藏标题,再次单击将删除CSS并再次显示它们。
javascript:(function(){var hidecss = "body { margin-left: -45px;
margin-top: -47px; } div.grid-table-container { width: 100%
!important; }
div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left:
initial !important; right: 0px; }
div.goog-inline-block.grid4-inner-container { width: 100% !important;
}"; if (document.querySelector('#hidecss')===null){ var hidescript =
document.createElement('style'); hidescript.type = 'text/css';
hidescript.id = 'hidecss'; hidescript.innerHTML = hidecss;
document.head.appendChild(hidescript); } else
document.getElementById('hidecss').remove();})();
可能不得不调整到其他屏幕尺寸,但这就是要点!
编辑格式化的JS:
var hidecss = "body { margin-left: -45px; margin-top: -47px; } div.grid-table-container { width: 100% !important; } div.native-scrollbar.native-scrollbar-ltr.native-scrollbar-y { left: initial !important; right: 0px; } div.goog-inline-block.grid4-inner-container { width: 100% !important; }";
if (document.querySelector('#hidecss')===null){
var hidescript = document.createElement('style');
hidescript.type = 'text/css';
hidescript.id = 'hidecss';
hidescript.innerHTML = hidecss;
document.head.appendChild(hidescript);
}
else document.getElementById('hidecss').remove();
这是一个丑陋的黑客,因为Google不能使Web应用程序像这样的用户修改很好地发挥作用,因此它只是可视化的(尝试单击单元格会将您带到不同的单元格,并且突出显示被弄乱了)。我最终不使用它
在Google表格电子表格视图上是不可能的。
一种选择是发布到网络上。值得注意的是headers参数可以用来显示/隐藏headers。使用headers=true
显示和headers=false
隐藏,如果省略了头是隐藏的。
例:
(唯一的文件ID替换为...
)
https://docs.google.com/spreadsheets/d/e/.../pubhtml?headers=false
参考文献
来自Google文档编辑器官方帮助论坛
隐藏行标题和列号(2015)
如何隐藏左侧的行号和顶部的列字母?(2010年)