私はこのiframeの内部.av-video-player-bg
の背景画像のURLを取得しようとしている:クロスドメインでのiframe内の要素のCSS属性を取得します
<iframe src="http://www.gamespot.com/videos/embed/6425430/"></iframe>
私は
$("iframe").contents().find('.av-video-player-bg').css('background-image');
を試みたが、Iましたこのエラーが発生する:
Failed to read the 'contentDocument' property from 'HTMLIFrameElement': Blocked a frame with origin " http://www.gamespot.com " from accessing a cross-origin frame.
あなたがすることはできませんを行うことができ、それが同一生成元ポリシーで、これはあなたのページではありません想像します。 – epascarello
@epascarelloありがとう – 01000110