Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正是这样。可以做到吗?即我可以使用 javascript 在框架中加载来自外部网站的 pdf 吗?
当然可以...
<iframe id="someFrame" /> <script type="text/javascript"> document.getElementById('someFrame').src = 'http://somesite.com/somefile.pdf'; </script>