-1

我不知道如何做到这一点,但我需要一些可以获取 url 的最后一部分并导航到它的东西。(取出第一部分可能更有效)例如

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}}
4

1 回答 1

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 或任何其他服务器端语言来执行此操作。应该不难找到那里...

于 2013-06-06T22:07:14.213 回答