所以我们假设有一个URL http://example.com/index.html/hello/hi,其中“hello”和“hi”是参数。
您如何使用javascript和表单方法POST来提取参数?
答案 0 :(得分:0)
这可行...
var secondvar = window.location.href.split('/')[window.location.href.split('/').length];
var firstvar = window.location.href.split('/')[window.location.href.split('/').length-1];
答案 1 :(得分:0)
你的主题有点模糊。但是,我以为我做了一个可能性的例子。 http://jsfiddle.net/tive/LjbPq/
我们的想法是以任何方式分割每个字符的URL。
var parts = document.URL.split("/");
由于split()返回一个数组(基于零),你需要从总长度中分散注1以获得最后一个索引。
var lastPart = parts[parts.length - 1];
在for循环中运行它,你应该在示例中看到这个想法。