我的页面#1上有一个表单,我需要将其提交到第2页,这是第3页的iframe。 我可以使用以下代码从第1页提交到iframe,但我需要的是当我在第1页上提交加载第3页时会加载提交的表格iframe。
以下是第1页的表格 target =“/ search.html”表示页面#3链接但不加载。相反,它会在单独的窗口上加载iframe。
<form id="SearchForm" action="search-results/" target="/search.html" method="post">
<input type="text" name="keywords[all_words]" />
<input type="text" name="City[all_words]" />
<a href="#" class="btn_search row_right" onclick="document.getElementById('SearchForm').submit()">Search</a>