href - 在没有javascript的情况下将参数附加到当前网址

时间:2014-04-15 09:01:37

标签: html href

我的网页网址如下所示:

http://mywebsite.com/show-index/index?limit=100

其中limit定义要显示的项目数。 我想添加一个'show more',它基本上会在我当前的网址中添加'more = true':

http://mywebsite.com/show-index/index?limit=100&more=true

我试过这个:

href='?more=true' 

但它超出了参数限制。

有没有一种简单的方法可以不使用javscript? 感谢

1 个答案:

答案 0 :(得分:0)

最好的方法是通过Ajax来实现。

如果您真的不想,只需使用链接即可 <a href="http://mywebsite.com/show-index/index?limit=100&more=true"</a>

在PHP方面,如果您检测到$_GET['more']='true',则juste会将限制更改为限制链接中的+ 100。

最好的方法是添加一些achor,因为@Bartdude说每次重新加载页面时都不必滚动。

如果你觉得这很有用,请不要忘记upvote并标记为已解决:)