Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 jQuery BBQ 插件,但我似乎无法以应有的方式显示 url。它是这样/#url=photographs.php%3F1的,如果它应该是/#url=photographs.php?1
/#url=photographs.php%3F1
/#url=photographs.php?1
想法?
这称为jQuery.bbq.pushState(state) 为您执行的URL 编码。
在您的示例中,?1 等于 %3F1。您可以使用在线 URL编码/解码工具看到这一点。
如果您不想要这个,请尝试在您的参数中添加一个井号:
jQuery.bbq.pushState('#' + state);