jQuery 路由 URL
JQuery 路由插件。 http://routesjs.com/
示例网址:../support/overview 没问题
$.routes({
"/support/overview": function(){}
});
** 这样一来,url就不起作用了 **
/support/overview/?id=1&cid=1
$.routes({
"/support/overview": function(){}
});
我做错了什么?
JQuery Routes Plugin. http://routesjs.com/
sample url : ../support/overview
No problem
$.routes({
"/support/overview": function(){}
});
** In this way, the url does not work **
/support/overview/?id=1&cid=1
$.routes({
"/support/overview": function(){}
});
What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该
像这样提交这个网址:
编写您的路线
并像这样
:这应该可以解决您的问题。
You're supposed to be submitting this url
like so:
and to write your route
like so:
That should fix your problems.