我不知道如何做到这一点,但我需要一些能够占据网址最后一部分并导航到它的东西。 (可能更有效地取出第一部分)例如
http://WEBSITE.com/mailto:exampledesk@googlegroups.com?subject=Help Needed%3A%20{{case.id}}{{case.subject}}
将导航至:
mailto:exampledesk@googlegroups.com?subject=Help Needed%3A%20{{case.id}}{{case.subject}}
答案 0 :(得分:0)
这需要使用某种脚本语言。最简单的方法是在客户端使用几行js执行此操作。
我会在javascript中做这样的事情:
// get the current url
var url = window.location.href;
// get the position of the last slash in the url
var lastSlash = url.lastIndexOf('/');
// get all the text that is after the last slash
var newUrl = url.substr(lastSlash + 1);
// set this as the new url
window.location.href = newUrl;
我在代码中添加了大量注释,但随意问...
如果能够更好地满足您的需求,也可以在PHP或任何其他服务器端语言中执行此操作。不应该很难找到那里......