我正在尝试从用户通过电子邮件中的链接访问的网址获取热链接
以下?
之后的所有内容:
http://localhost:6547/m/intro/inbox/100003120?hotlink=8095cb20284c935d9ff32c0ed61b28f1&codekitCB=400521239.247318
我需要将该热链接保存到变量中以POST到新的URL,但是我的代码没有检索散列或热链接:
jQuery的:
$(document).ready(function () {
// MOBILE HACKS
var path = window.location.pathname;
var hash = window.location.hash;
console.log('dashboard.init: path = '+path);
console.log('dashboard.init: hash = '+hash);
控制台:
你怎么会得到哈希/热链接?在上面的网址?
答案 0 :(得分:1)
您可以使用window.location.search
这会从一切都归还? on,然后你可以根据需要解析它。
答案 1 :(得分:1)
Theres可能是一个更好的答案,但我一直只是用
window.location.href.split( '?')
索引[1]将是之后的所有内容?