我一直在使用reference中的Visio在线API。我能够在SharePoint中获得所需的结果。但即使使用CSS,我也无法删除边框和页面名称。
请参见下面的代码:
$(window).on("load", function() {
setTimeout(function() {
$("#embed-iframe")
.contents()
.$("iframe")
.contents()
.find("div.InnerFrame")
.css("border", "none");
}, 2000);
});
如何删除Viso图下方的边框和页面标签?