我想知道当我的Google幻灯片幻灯片在外部网站上全屏运行时,是否可以通过任何方式使文本变为可选择状态。链接似乎有效-您可以单击它们,但是我想要一个可以选择和复制一些文本的功能。
基本上,Google会生成我可以嵌入的iframe代码。
这是谷歌给我嵌入的代码:
// Split slices s into all substrings separated by sep and returns a slice of
// the substrings between those separators.
//
// If s does not contain sep and sep is not empty, Split returns a
// slice of length 1 whose only element is s.
//
// If sep is empty, Split splits after each UTF-8 sequence. If both s
// and sep are empty, Split returns an empty slice.
//
// It is equivalent to SplitN with a count of -1.
func Split(s, sep string) []string { return genSplit(s, sep, 0, -1) }
据我了解,使用了WebKit,不确定它是否有作用。
有人对此有经验吗-甚至可以做到吗?