我有一個iframe,需要捕獲javascript變量中的src屬性。這就是我的iframe看起來像從iframe中獲取iframe src參數
<iframe id="iframe_module_46081" name="iframe_module_46081" src="//myurl.com/tabs/495/campaigns/0ed3ffa8-5050-4a18-a5e3-f348d12a1304?signature=6aa3005368f163539976460246f2f0839c0fb3e3&id=678326">
<script>$(document).ready(function(){
var name = window.name;
var src = ????;
})
</script>
</iframe>
我能夠通過window.name而不是src屬性獲取名稱。任何想法?
'top.document.getElementsByName(window.name)[0] .src'應該這樣做 – 2012-04-19 15:48:35
@GGG:這不適用於跨域。 – SLaks 2012-04-19 15:49:14
@SLaks顯然,除了'document.location'之外,什麼都不會工作跨域= /但我認爲由於某種原因他不適合他。 – 2012-04-19 15:50:15