skip to main
|
skip to sidebar
memo temp
2009年1月15日 星期四
iframe 之間的互動
在一層又一層的iframe 裡, 我們可以利用 top 屬性直接跳到最上層的視窗操縱其他我們想操縱的 iframe
example
[ 內部 iframe]
$('#click_test').click(function(){
top.lala();
});
[ 外部 iframe]
function lala() {
$('.account').click();
}
當然為了各個iframe之間的溝通, 或許會有 same-origin policy 的問題
所以各個iframe 都需有將iframe 設成相同的 code, 例如很多使用subdomain 的 domain name
便可以如此使用
var sub = document.domain.split('.');
sub.shift();
sub = sub.join('.');
document.domain = sub;
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
state chart
eb
關於我自己
Lake
檢視我的完整簡介
pie chart
網誌存檔
►
2010
(1)
►
11月
(1)
▼
2009
(26)
▼
1月
(26)
Migrations in Rails 2.1
Non Active Record Model
Going Back
Helpers Outside Views
JSON
javascript tips
改變 iframe 的 source
javascript in browser tips
cookies 設定
javascript在網頁頁面加載時的執行順序
ruby gzip, stringio
iframe 之間的互動
textarea 點選自動複製, copy
parent document
get,submit
activerecord, query cache
CSRF (Cross-Site Request Forgery) & InvalidAuthen...
some tips, add_to_base, save_with_validation, verify
Some cgi memo
javascript escape html
ruby & javascript url encode
rails 辨識brower
Some good tips
字串 String 一些好用的 function, scan, split, match, gsu...
CSS Tools: Reset CSS
Top 10 Ruby on Rails performance tips
►
2008
(26)
►
12月
(26)
沒有留言:
張貼留言