2011-09-30 111 views
1

我正在使用Facebook圖形API邀請Facebook朋友加入我的codeigniter應用程序,我想在iframe元素內觸發點擊事件,但它是沒有射擊,我的代碼是無法在iframe中獲取html,也無法觸發iframe中的元素事件

 $("iframe").contents().find('input[name="login"]').live('mouseover',function(){ 
          alert("log in"); 
     }); 

警報不顯示,在螢火蟲沒有錯誤。

,但如果我這樣做

$("iframe").live('mouseover',function(){ 
         alert("log in"); 
    }); 

這部作品,並給予警告。

,但如果我試圖讓裏面的iframe

$("iframe").live('mouseover',function() {   
    alert($('.fb_ltr').contents().find('.request').html());      
}); 


it gives an error in firebug 


Permission denied to access property 'ownerDocument' 
[Break On This Error] shift(),i.sort());if(!!e&&!f.event.cus...is).get();f(e[h])[b](j),d=d.concat(j 

如何使用元素裏面的iframe,我看到了類似的問題,但不能得到幫助的HTML。請幫助,謝謝..............................

回答