我想更改从具有公共读取权限的S3访问的iframe内容的属性。
$('#iframeid').contents().find('Viewpoint#id').attr('set_bind', 'true');
但它给出了错误
无法从中读取'contentDocument'属性 'HTMLIFrameElement':阻止原点为“http://localhost”的框架 从访问跨源框架。
我已经设置了桶的CORS规则
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
有什么办法,我可以设置iframe内容的属性来自S3吗?