[問題] 透過JS控制iframe..

看板Ajax作者 (col)時間17年前 (2007/06/07 14:58), 編輯推噓3(302)
留言5則, 3人參與, 最新討論串1/1
請問一下 有辦法通過js來access iframe內的資料嗎? 就像是下面 index.html: <script> function sendTest() { //把iframe['test']內的表單作submit } </script> <button onClick='sendTest()'> </button> <iframe src='test.html' id='test' > </iframe> test.html: <form action='handle.php' id='form1'> <input type='hidden' name='aAction' value='joasd'> </form> -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 124.10.83.30

06/07 17:42, , 1F
window.frames[0].document.getElementById
06/07 17:42, 1F

06/07 17:42, , 2F
('form1').submit()
06/07 17:42, 2F

06/09 15:01, , 3F
一樓的frames[0]改成frames['test']也可以。
06/09 15:01, 3F

06/09 15:01, , 4F
若在多個iframe的情況下,以id存取比較清楚。
06/09 15:01, 4F

08/21 22:48, , 5F
iframe裡src是不同網站也可以這樣操作form嗎?
08/21 22:48, 5F
文章代碼(AID): #16PwopdF (Ajax)
文章代碼(AID): #16PwopdF (Ajax)