我在 index.php 页面上有两个单独的表单:
<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>
当我提交其中任何一个表单时,网址显示为:
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 页面上,我有两个 div,#housing_results 和 #rooms_results。默认情况下,它们都是隐藏的。如果 GET 变量“search_housing”存在,我想显示 div#housing_results,如果 GET 变量“search_rooms”存在,我想显示 div#rooms_results。
如果 url 中存在特定的 GET 变量,如何使用 jQuery 制作特定的 div 显示?