iframe を含むこのテスト ページがあります。親ページ フォームで何か (つまり、PR、IT) を検索すると、iframe で結果がトリガーされますが、小さな問題が 1 つあります。左の列に正しいオプションがありません。都市選択など)。iframe 自体で同じものを検索すると、結果が正しくなり、結果をフィルタリングできます。私は何が間違っていたのか理解できません。
これは、 iframe で結果をトリガーする親ページ フォームです。
<form id="SearchForm" action="http://mysite.com/search-results-jobs/" target="my-iframe" method="post">
<input type="hidden" name="action" value="search" />
<input type="hidden" name="listing_type[equal]" value="Job" />
<label><strong>What?</strong>
<em>
<input type="text" value="job title, keywords or company name"
onblur="if(this.value=='') this.value='job title, keywords or company name'"
onFocus="if(this.value =='job title, keywords or company name' ) this.value=''" name="keywords [all_words]" />
</em></label>
<label><strong class="color">Where?</strong><b><input type="text" value="city, state or zip code"
onblur="if(this.value=='') this.value='city, state or zip code'" onFocus="if(this.value =='city, state or zip code' ) this.value=''" name="City[all_words]" /></b></label>
<a href="#" class="SearchForm-link" onclick="one(); two(); three(); four();">Search</a>
<input type="submit" id="btn-search" class="button" value="Cauta"/></form>