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.
我有一个 iframe,我不会使用 jquery 对样式进行一些编辑,我该如何在 iframe 上做到这一点?
<iframe src="domain.com"></iframe> <script> $('#div').hide(); </script>
根据同源政策,你不能。或者如果你想隐藏整个 iframe,你可以使用简单的:
$("#iframe_id").hide();