我有一个页面里边是链接的列表比如<a href="index.php?id=1#post">,当点击这个链接的时候,我怎么在新的页面获取到到id=1,然后去服务器请求内容。
1
airyland 2015-06-09 02:24:50 +08:00
在新的页面从location.href取得id。
|
2
Wangxf 2015-06-09 03:53:40 +08:00 via iPhone
location.href获得,然后split之类的去做处理取到
|
3
Septembers 2015-06-09 04:00:07 +08:00
> location.search
< "?id=1" > location.search.slice(1) < "id=1" |
5
des 2015-06-09 08:46:50 +08:00
不知道题主想说什么?我试了是可以的
http://img-storage.qiniudn.com/15-6-9/15170212.jpg |
7
gilgamesh 2015-06-09 09:41:16 +08:00 via Android
你不想跳转的话就别用 a(href) 呗。
|
8
colorsand OP |