index.php ページに 2 つのフォームがあります。
<form action="search_results.php" method="get" id="search_housing_area">
<input type="text" name="rent_housing" />
<inout type="submit" name="search_housing" value="" />
</form>
<form action="search_results.php" method="get" id="search_rooms_area">
<input type="text" name="rent_rooms" />
<inout type="submit" name="search_rooms" value="" />
</form>
これらのフォームのいずれかを送信すると、URL は次のように表示されます。
http://www.domain.com/search_results.php?rent_housing=1234&search_housing=
また
http://www.domain.com/search_results.php?rent_rooms=1234&search_rooms=
search_results.php ページには、#housing_results と #rooms_results という 2 つの div があります。どちらもデフォルトでは非表示になっています。GET 変数「search_housing」が存在する場合は div#housing_results を表示し、GET 変数「search_rooms」が存在する場合は div#rooms_results を表示したいと考えています。
特定の GET 変数が URL に存在する場合、jQuery を使用して特定の div ショーを作成するにはどうすればよいですか?