我创建了一个iframe,我在其中加载了一个网站(我没有访问过这个网站 - 它不是我写的)
<script type="text/javascript">
var el = document.createElement("iframe");
el.setAttribute('id', 'ifrm');
document.body.appendChild(el);
el.setAttribute('src', 'http://AWEBSITE.com/');
alert(document.getElement("iframe").cookie); //This doesnt work.....
</script>
我可以用某种方式使用javascript来阅读我的iframe cookie吗?