SocialEngine - 链接到分类类别

发布于 2024-12-11 06:41:30 字数 357 浏览 2 评论 0原文

我正在寻找一种方法来提供直接到社交分类类别的链接。看起来这将是一个非常通用的解决方案,可以通过 URL 或其他方式填充下拉菜单:p

如果你看这里 - http://demo.socialengine.net/classifieds

在右侧,您会看到一个过滤框,第一个选项是类别。一旦您选择了一个类别,页面就会重新加载(但 URL 不会改变),并显示所选类别。

我需要建立两个指向特定类别的链接,因此我希望有人可以提供一种有趣的方式来使其发挥作用。希望该演示网站能够提供足够的信息。

谢谢堆垛机!

I'm looking for a way to provide a link directly to a social classifieds category. It's looking like it will be a pretty generic solution to make a dropdown populate via URL, or something :p

If you look here - http://demo.socialengine.net/classifieds

On the right, you'll see a filter box, the first of the option is a category. As soon as you select a category the page reloads (but the url doesn't change) presenting the selected category.

I need to make 2 links to particular categories, so I'm hoping someone can provide an interesting way to make it work. Hopefully that demo site can give enough info.

Thanks Stackers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

久隐师 2024-12-18 06:41:30

我找到了一些方法,请尝试以下操作:

http://demo.socialengine.net/classifieds?category=6

在URL中传递category参数,但这是一个id,对SEO不太友好。

如果有其他好的解决方案,我会在这里更新。

I found some way, try bellow:

http://demo.socialengine.net/classifieds?category=6

Pass the category parameter in URL, but this is an id, not much SEO friendly.

I'll update here, if there is another good solution.

蹲在坟头点根烟 2024-12-18 06:41:30

我希望这将创建一个下拉列表,其中包含下拉列表中每个选项的链接:

<select class="styled" style="position: absolute; opacity: 0; font-size: 13px; height: 49px;"onchange="if (this.value) window.location.href=this.value">

<option>OTHER</option>
<?php   foreach ($this->categories as $key=>$cat){  ?>
<option value= "/classifieds?category=<?php echo $key; ?>"><?php echo $cat; ?></option>
<?php  } ?>     
</select>

您只需要链接两个选项,您在 foreach 循环中给出条件,例如 if($key<2) 那么这将创建链接对于两个选项和其余选项,它只会形成一个下拉菜单。

I hope this will make a drop down with links for each option within dropdown:

<select class="styled" style="position: absolute; opacity: 0; font-size: 13px; height: 49px;"onchange="if (this.value) window.location.href=this.value">

<option>OTHER</option>
<?php   foreach ($this->categories as $key=>$cat){  ?>
<option value= "/classifieds?category=<?php echo $key; ?>"><?php echo $cat; ?></option>
<?php  } ?>     
</select>

You need link for only two options you give condition within the foreach loop like if($key<2) then this will make link for two options and for rest it will simply form a dropdown.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文