我有一个显示外部站点的简单页面。我希望能够使用 TogetherJS 共享我的页面(与外部站点)。我无法更改外部站点的来源,因此请使用对象来显示它。这按预期显示 - 但光标共享仅适用于 HTML 对象/外部站点之外的 HTML。是否可以在不更改嵌入页面的来源的情况下做到这一点?
<HTML>
<HEAD>
<script src="https://togetherjs.com/togetherjs-min.js"></script>
</HEAD>
<BODY>
<button onclick="TogetherJS(this); return false;">Start Collaborating</button>
<BR>
<BR>
<object type="text/html" data="http://mypage.com" style="width:90%; height:90%"> </object>
</BODY>
</HTML>
约翰