我希望点击“查找营地”链接所有营地,这意味着所有州,所有性别,所有体育和所有年龄段的营地必须是 显示,网址应该是 浏览器中的“http://gogliderhosting.com/spocamp.com/find-a-camp/”。
<li ><a href="http://gogliderhosting.com/spocamp.com/find-a-camp/" >Find A Camp</a></li>
此外,我有搜索查询的代码,只会返回营地 特定的运动,状态,性别和年龄范围如下。可以 你修改了这个功能,以便我的上述要求是 实现了。此外,如何从“寻找营地”访问此功能 链接,因为它正在重定向我 “http://gogliderhosting.com/spocamp.com/find-a-camp/”。感谢你 帮助..
<script>
function SearchNow() {
search = jQuery('input[name="ofsearch"]').val();
v1 = jQuery('#ofait-dir-item-sport option:selected').text().toLowerCase();
v2 = jQuery('#ofait-dir-item-Gender option:selected').text().toLowerCase();
v3 = jQuery('#ofait-dir-item-state option:selected').text().toLowerCase();
v4 = jQuery('#ofait-dir-item-Age option:selected').text().toLowerCase();
if(search == '' && v1 == 'sport' && v2 == 'gender' && v3 == 'state' && v4 == 'age range') {
window.location = "http://gogliderhosting.com/spocamp.com/?s=%20";
} else {
q = '';
if(v1 != 'sport') {
q = q + "&ait-dir-item-sport="+v1 ;
}
if(v2 != 'gender') {
q = q + "&ait-dir-item-Gender="+v2;
}
if(v3 != 'state') {
q = q + "&ait-dir-item-state="+v3;
}
if(v4 != 'age range') {
q = q + "&ait-dir-item-Age="+v4;
}
window.location = "http://gogliderhosting.com/spocamp.com/?s=%20"+q;
}
}
</script>